AIMA.Core.Environment.NQueens.NQueensFitnessFunction.isGoalState C# (CSharp) Method

isGoalState() public method

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