AIMA.Core.Search.Framework.Problem.isGoalState C# (CSharp) Method

isGoalState() public method

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