public DynamicMinMaxStrategy(int player)
 {
     this.player = player;
      _minmax25= new MinMax(new ScoreAndCornersEvaluator(), player, 5);
      _minmax3 = new MinMax(new ScoreAndCornersEvaluator(), player, 6);
 }
Example #2
0
 public MinMaxStrategy(IBoardStateEvaluator evaluator, int depth, int player)
 {
     _minMax = new MinMax(evaluator, player, depth);
 }