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