chess:programming:perft
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
chess:programming:perft [2021/10/12 09:49] – peter | chess:programming:perft [2021/10/12 10:27] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Chess - Programming - Perft ====== | ====== Chess - Programming - Perft ====== | ||
- | **Perft** does a raw node count, up to some specified depth, by doing a full tree search. | + | **Perft**, standing for Performance Test, does a raw node count, up to some specified depth, by doing a full tree search. |
+ | |||
+ | * By recording the amount of time taken to complete a Perft Test, it is possible to check the performance. | ||
Draws by threefold repetition are ignored. | Draws by threefold repetition are ignored. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Perft Function ===== | ||
+ | |||
+ | A simple perft function might look as follows: | ||
+ | |||
+ | <code cpp> | ||
+ | typedef unsigned long long u64; | ||
+ | |||
+ | u64 Perft(int depth) | ||
+ | { | ||
+ | MOVE move_list[256]; | ||
+ | int n_moves, i; | ||
+ | u64 nodes = 0; | ||
+ | |||
+ | if (depth == 0) return 1; | ||
+ | |||
+ | n_moves = GenerateMoves(move_list); | ||
+ | for (i = 0; i < n_moves; i++) { | ||
+ | MakeMove(move_list[i]); | ||
+ | nodes += Perft(depth - 1); | ||
+ | UndoMove(move_list[i]); | ||
+ | } | ||
+ | | ||
+ | return nodes; | ||
+ | } | ||
+ | </ | ||
---- | ---- | ||
Line 30: | Line 60: | ||
|11|2097651003696806| | | | |39147687661803|1078854669486| | | |11|2097651003696806| | | | |39147687661803|1078854669486| | | ||
|12|62, | |12|62, | ||
+ | |13|1, | ||
---- | ---- | ||
Line 35: | Line 66: | ||
=== Checks === | === Checks === | ||
- | ^Depth^Checks^Direct Check Only^Single Discovered Check Only^Direct and Discovered Checks^Double Discovered Checks^ | + | ^Depth^Direct Check Only^Single Discovered Check Only^Direct and Discovered Checks^Double Discovered Checks^Total^ |
- | |1|0|0|0|0|0|0| | + | |1|0|0|0|0|0| |
- | |2|0|0|0|0|0|0| | + | |2|0|0|0|0|0| |
- | |3|12|12|0|0|0|12| | + | |3|12|0|0|0|12| |
- | |4|469|461|8|0|0|461| | + | |4|461|0|0|0|461| |
- | |5|27351|26998|6|0|0|27004| | + | |5|26998|6|0|0|27004| |
- | |6|798271|797896|329|46|0| | + | |6|797896|329|46|0|798271| |
- | |7|32668081|32648427|18026|1628|0| | + | |7|32648427|18026|1628|0|32668081| |
- | |8|959129557|958135303|847309|147215|0| | + | |8|958135303|847039|147215|0|959129557| |
- | |9|35695709940|35653060996|37101713|5547221|10| | + | |9|35653060996|37101713|5547221|10|35695709940| |
- | |10|1078854669486|1077020493859|1531274015|302900733|879| | + | |10|1077020493859|1531274015|302900733|879|1078854669486| |
- | |11|39147687661803|39068470901662|67494850305|11721852393|57443| | + | |11|39068470901662|67494850305|11721852393|57443|39147687661803| |
- | |12|1224448528652016| | | | | | + | |12| | | | |1224448528652016| |
<WRAP info> | <WRAP info> | ||
Line 67: | Line 98: | ||
=== Check Mates === | === Check Mates === | ||
- | ^Depth^Check Mates^Direct Checkmate Only^Single Discovered Checkmate Only^Direct and Discovered Checkmate^Double Discovered Checkmate^Total^ | + | ^Depth^Direct Checkmate Only^Single Discovered Checkmate Only^Direct and Discovered Checkmate^Double Discovered Checkmate^Total^ |
|1|0|0|0|0|0| | |1|0|0|0|0|0| | ||
|2|0|0|0|0|0| | |2|0|0|0|0|0| | ||
Line 79: | Line 110: | ||
|10|8771693969|598058|18327128|0|8790619155| | |10|8771693969|598058|18327128|0|8790619155| | ||
|11|360675926605|60344676|1553739626|0|362290010907| | |11|360675926605|60344676|1553739626|0|362290010907| | ||
+ | |12| | | | |8361091858959| | ||
---- | ---- | ||
Line 138: | Line 169: | ||
|5|3605103|3797944| | |5|3605103|3797944| | ||
|6|71179139|74977083| | |6|71179139|74977083| | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Position 1 ==== | ||
+ | |||
+ | This position is very good because it catches many possible bugs: | ||
+ | |||
+ | < | ||
+ | Position r3k2r/ | ||
+ | </ | ||
+ | |||
+ | ^Depth^Perft Value^ | ||
+ | |1|48| | ||
+ | |2|2039| | ||
+ | |3|97862| | ||
+ | |4|4085603| | ||
+ | |5|193690690| | ||
+ | |6|8031647685| | ||
+ | </ | ||
---- | ---- | ||
Line 175: | Line 225: | ||
|5|15833292|2046173|6512|0|329464|200568| | | |5|15833292|2046173|6512|0|329464|200568| | | ||
|6|706045033|210369132|212|10882006|81102984|26973664| | | |6|706045033|210369132|212|10882006|81102984|26973664| | | ||
- | + | ||
---- | ---- | ||
+ | ===== A very interesting FEN ===== | ||
+ | |||
+ | 18 queens with only 6 captures: | ||
+ | |||
+ | < | ||
+ | k1qrq3/ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Other FENs useful for finding bugs ===== | ||
+ | |||
+ | < | ||
+ | Position 8/ | ||
+ | Perft(1) = 50 | ||
+ | Perft(2) = 279 | ||
+ | |||
+ | Position 8/ | ||
+ | Perft(6) = 38633283 | ||
+ | |||
+ | Position rnbqkb1r/ | ||
+ | Perft(5) = 11139762 | ||
+ | |||
+ | Position 8/ | ||
+ | Perft(6) = 11030083 | ||
+ | Perft(7) = 178633661 | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
==== References ==== | ==== References ==== |
chess/programming/perft.1634032145.txt.gz · Last modified: 2021/10/12 09:49 by peter