Uses of Class
org.swtpra1.alphabetaplayer.alphabeta.AlphaBetaSearchTree
-
Packages that use AlphaBetaSearchTree Package Description org.swtpra1.alphabetaplayer Contains different modifications of search trees all based on negamax with alpha beta pruning.org.swtpra1.alphabetaplayer.transpositiontables Classes related to the "transposition tables" optimization for searching the game trees. -
-
Uses of AlphaBetaSearchTree in org.swtpra1.alphabetaplayer
Fields in org.swtpra1.alphabetaplayer declared as AlphaBetaSearchTree Modifier and Type Field Description protected AlphaBetaSearchTree
AlphaBetaPlayer. alphaBeta
Implementation of the Negamax tree with AlphaBetaSearchTree pruning. -
Uses of AlphaBetaSearchTree in org.swtpra1.alphabetaplayer.transpositiontables
Subclasses of AlphaBetaSearchTree in org.swtpra1.alphabetaplayer.transpositiontables Modifier and Type Class Description class
AlphaBetaSearchTreeWithTranspositionTables
Implements the negamax search algorithm with alpha beta pruning and transposition table optimization.
-