AIMA.Core.Environment.NQueens.NQueensFitnessFunction.isGoalState C# (CSharp) Méthode

isGoalState() public méthode

public isGoalState ( Object state ) : bool
state Object
Résultat bool
        public bool isGoalState(Object state)
        {
            return goalTest.isGoalState(getBoardForIndividual((String)state));
        }