AIMA.Core.Search.Online.LRTAStarAgent.LRTAStarAgent C# (CSharp) Method

LRTAStarAgent() public method

public LRTAStarAgent ( OnlineSearchProblem problem, PerceptToStateFunction ptsFunction, HeuristicFunction hf ) : System
problem OnlineSearchProblem
ptsFunction PerceptToStateFunction
hf HeuristicFunction
return System
        public LRTAStarAgent(OnlineSearchProblem problem,
                PerceptToStateFunction ptsFunction, HeuristicFunction hf)
        {
            setProblem(problem);
            setPerceptToStateFunction(ptsFunction);
            setHeuristicFunction(hf);
        }