AIMA.Core.Search.Framework.GraphSearch.search C# (CSharp) Method

search() public method

public search ( Problem problem, Queue frontier ) : List
problem Problem
frontier Queue
return List
        public override List<Action> search(Problem problem, Queue<Node> frontier)
        {
            // initialize the explored set to be empty
            explored.Clear();
            frontierState.Clear();
            return base.search(problem, frontier);
        }