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

isGoalState() public method

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