public AStarStateWithVisitedHashesFactory(AStarStateFactory baseStateFactory)
 {
     this.baseStateFactory = baseStateFactory;
 }
Example #2
0
 public AStarWithoutVisitedCollectionSolver()
 {
     stateFactory = new AStarStateFactory(new WrongPlacesHeuristicScoreComputer());
 }
Example #3
0
 public AStarWithoutLoopsSolver()
 {
     stateFactory = new AStarStateFactory(new WrongPlacesHeuristicScoreComputer());
 }