AIMA.Core.Search.Framework.SearchAgent.SearchAgent C# (CSharp) Method

SearchAgent() public method

public SearchAgent ( Problem p, Search search ) : System.Collections.Generic
p Problem
search Search
return System.Collections.Generic
        public SearchAgent(Problem p, Search search)
        {
            actionList = search.search(p);
            actionIterator = actionList.GetEnumerator();
            searchMetrics = search.getMetrics();
        }