AIMA.Core.Search.Online.LRTAStarAgent.LRTAStarAgent C# (CSharp) 메소드

LRTAStarAgent() 공개 메소드

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