コード例 #1
0
 public LRTAStarAgent(OnlineSearchProblem problem, IPerceptToStateFunction ptsFunction, IHeuristicFunction hf)
 {
     this.Problem = problem;
     this.PerceptToStateFunction = ptsFunction;
     this.HeuristicFunction      = hf;
 }
コード例 #2
0
 public OnlineDFSAgent(OnlineSearchProblem problem,
                       IPerceptToStateFunction ptsFunction)
 {
     Problem = problem;
     PerceptToStateFunction = ptsFunction;
 }