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