Exemplo n.º 1
0
 public ExpectiMiniMaxIterAlphaBeta()
 {
     heuristique = HeuristiqueFactory.Factory(Settings.HEURISTIC);
 }
Exemplo n.º 2
0
 public ExpectiMiniMaxSimple()
 {
     heuristique = HeuristiqueFactory.Factory(Settings.HEURISTIC);
 }
 public ExpectiMiniMaxIterSimple()
 {
     heuristique = HeuristiqueFactory.Factory(Settings.HEURISTIC);
     stopwatch   = new Stopwatch();
 }