chess:programming:search:negamax
This is an old revision of the document!
Chess - Programming - Search - Negamax
Negamax is a common way of implementing minimax and derived algorithms.
- Instead of using two separate subroutines for the Min player and the Max player, it passes on the negated score due to following mathematical relation:
max(a, b) == -min(-a, -b)
This is how the pseudo-code of the recursive algorithm looks like. For clarity move making and unmaking is omitted.
int negaMax( int depth ) { if ( depth == 0 ) return evaluate(); int max = -oo; for ( all moves) { score = -negaMax( depth - 1 ); if( score > max ) max = score; } return max; }
References
chess/programming/search/negamax.1633992721.txt.gz · Last modified: 2021/10/11 22:52 by peter