chess:programming:search
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
chess:programming:search [2021/10/11 22:35] – peter | chess:programming:search [2022/01/07 10:05] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Chess - Programming - Search ====== | ====== Chess - Programming - Search ====== | ||
- | ===== Alpha-Beta ===== | + | The object of Chess is to checkmate the other player, to avoid being checkmated, or to achieve a draw if that is the best thing given the circumstances. |
- | + | ||
- | < | + | |
- | int alphaBeta( int alpha, int beta, int depthleft ) { | + | |
- | if( depthleft == 0 ) return quiesce( alpha, beta ); | + | |
- | for ( all moves) | + | |
- | score = -alphaBeta( -beta, -alpha, depthleft - 1 ); | + | |
- | if( score >= beta ) | + | |
- | | + | |
- | if( score > alpha ) | + | |
- | alpha = score; // alpha acts like max in MiniMax | + | |
- | } | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | < | + | |
- | score = alphaBetaMax(-oo, | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | int alphaBetaMax( int alpha, int beta, int depthleft ) { | + | |
- | if ( depthleft == 0 ) return evaluate(); | + | |
- | for ( all moves) { | + | |
- | score = alphaBetaMin( alpha, beta, depthleft - 1 ); | + | |
- | if( score >= beta ) | + | |
- | | + | |
- | if( score > alpha ) | + | |
- | alpha = score; // alpha acts like max in MiniMax | + | |
- | } | + | |
- | | + | |
- | } | + | |
- | + | ||
- | int alphaBetaMin( int alpha, int beta, int depthleft ) { | + | |
- | if ( depthleft == 0 ) return -evaluate(); | + | |
- | for ( all moves) { | + | |
- | score = alphaBetaMax( alpha, beta, depthleft - 1 ); | + | |
- | if( score <= alpha ) | + | |
- | | + | |
- | if( score < beta ) | + | |
- | beta = score; // beta acts like min in MiniMax | + | |
- | } | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Minimax ===== | + | |
- | + | ||
- | Minimax | + | |
- | + | ||
- | < | + | |
- | int maxi( int depth ) { | + | |
- | if ( depth == 0 ) return evaluate(); | + | |
- | int max = -oo; | + | |
- | for ( all moves) { | + | |
- | score = mini( depth - 1 ); | + | |
- | if( score > max ) | + | |
- | max = score; | + | |
- | } | + | |
- | return max; | + | |
- | } | + | |
- | + | ||
- | int mini( int depth ) { | + | |
- | if ( depth == 0 ) return -evaluate(); | + | |
- | int min = +oo; | + | |
- | for ( all moves) { | + | |
- | score = maxi( depth - 1 ); | + | |
- | if( score < min ) | + | |
- | min = score; | + | |
- | } | + | |
- | return min; | + | |
- | } | + | |
- | </ | + | |
+ | A chess program selects moves via use of a search function. | ||
+ | * A search function is a function that is passed information about the game, and tries to find the best move for side that the program is playing. | ||
---- | ---- | ||
- | ===== Negamax ===== | + | [[Chess: |
- | Negamax is a common way of implementing minimax and derived algorithms. | + | [[Chess: |
- | * 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: | + | [[Chess:Programming: |
- | < | + | [[Chess: |
- | 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. | + | [[Chess: |
- | < | + | [[Chess: |
- | 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; | + | |
- | } | + | |
- | </ | + | |
---- | ---- | ||
Line 120: | Line 31: | ||
http:// | http:// | ||
+ | http:// | ||
chess/programming/search.1633991723.txt.gz · Last modified: 2021/10/11 22:35 by peter