chess:programming:search:negamax
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
chess:programming:search:negamax [2021/10/11 22:52] – peter | chess:programming:search:negamax [2021/10/11 23:50] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Chess - Programming - Search - Negamax ====== | ====== Chess - Programming - Search - Negamax ====== | ||
- | Negamax is a common way of implementing | + | Negamax is a common way of implementing |
* 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: | * 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: | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== How to Use NegaMax ===== | ||
+ | |||
+ | NegaMax is called from a root function. | ||
+ | |||
+ | In the loop which generates all the root moves: | ||
+ | |||
+ | * Generate a **Score** relative to the side being evaluated, for a specific move. | ||
+ | * In the Root retain the returned score for each potential move. | ||
+ | * Pick the move with the lowest score. | ||
+ | |||
+ | ---- | ||
< | < | ||
Line 23: | Line 37: | ||
} | } | ||
</ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * This score must be symmetric. | ||
+ | * The simplest score evaluation could be: **score = materialWeight * (numWhitePieces - numBlackPieces) * who2move** where who2move = 1 for white, and who2move = -1 for black. | ||
+ | |||
+ | </ | ||
---- | ---- |
chess/programming/search/negamax.1633992721.txt.gz · Last modified: 2021/10/11 22:52 by peter