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 10:04] – [Position 3] 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 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 186: | Line 236: | ||
k1qrq3/ | 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 | ||
+ | </ | ||
+ | |||
---- | ---- |
chess/programming/perft.1634033074.txt.gz · Last modified: 2021/10/12 10:04 by peter