chess:programming:search:alpha-beta
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
chess:programming:search:alpha-beta [2021/10/11 23:20] – peter | chess:programming:search:alpha-beta [2021/10/11 23:28] (current) – peter | ||
---|---|---|---|
Line 22: | Line 22: | ||
* For this reason, good move ordering is very important, and is the focus of a lot of the effort of writing a good chess program. | * For this reason, good move ordering is very important, and is the focus of a lot of the effort of writing a good chess program. | ||
+ | |||
+ | **The minimum number of leaves with depth n and b = 40** | ||
+ | |||
+ | ^Depth^Worst case^Best case^ | ||
+ | |n|< | ||
+ | |1|40|40| | ||
+ | |2|1, | ||
+ | |3|64, | ||
+ | |4|2, | ||
+ | |5|102, | ||
+ | |6|4, | ||
+ | |7|163, | ||
+ | |8|6, | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** Assuming constantly **b** moves for each node visited and search depth **n**, the maximal number of leaves in alpha-beta is equivalent to Minimax, b ^ n. | ||
+ | |||
+ | * Considering always the best move first, it is **b ^ ceil(n/2) plus b ^ floor(n/2) minus one**. | ||
+ | * This table which also demonstrates the odd-even effect. | ||
+ | |||
+ | </ | ||
---- | ---- | ||
Line 85: | Line 106: | ||
http:// | http:// | ||
+ | |||
+ | http:// |
chess/programming/search/alpha-beta.1633994406.txt.gz · Last modified: 2021/10/11 23:20 by peter