Methods in ai.alphabeta with parameters of type NodeModel |
static java.lang.Object |
AlphaBeta.getBestMove(NodeModel node,
int player,
int alpha,
int beta,
int depth)
Returns the best move for given situation and player, as
calculated by the alpha-beta search algorithm with given search
depth. |
static java.lang.Object |
AlphaBeta.search(NodeModel node,
int player,
int alpha,
int beta,
int depth,
boolean first)
Returns the best move for given situation and player, as
calculated by the alpha-beta search algorithm with given search
depth. |