Package ubc.team09.search
package ubc.team09.search
Game Tree Search
This package is where game tree search methods are implemented.SearchMethoddefines the general interface of a search method.AlphaBetahas an implementation of alpha-beta search.
-
ClassDescriptionAlpha-Beta SearchA history table is used to track which moves have produced cutoffs in the past and increments their score accordingly.Defines the interface of a game tree search method.This class should be extended if you want to impose a time constraint on some process.