Uses of Interface
ai.alphabeta.NodeModel

Packages that use NodeModel
ai.alphabeta   
othello.board   
 

Uses of NodeModel in ai.alphabeta
 

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.
 

Uses of NodeModel in othello.board
 

Classes in othello.board that implement NodeModel
 class BoardState
          The BoardState contains the states for the Othello-board.