Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1.     public static int Iterative_Deepening(Node node, int d, int alpha, int beta ){
  2.         int score = 0;
  3.         for(Node child: node.childNode){
  4.             score = Negamax_AlphaBeta(child, d-1, alpha, beta);
  5.         }
  6.         return score;
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement