Ejemplo n.º 1
0
 public MinMaxAgent(int searchDepth = 4)
 {
     SEARCH_DEPTH = searchDepth;
     evalAgent    = new HeuristicAgent();
 }
Ejemplo n.º 2
0
 public MinMaxAgent(IEvaluationAgent agent, int searchDepth = 4)
 {
     evalAgent    = agent;
     SEARCH_DEPTH = searchDepth;
 }