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:23] – peter | chess:programming:search:alpha-beta [2021/10/11 23:28] (current) – peter | ||
---|---|---|---|
Line 23: | Line 23: | ||
- | **number of leaves with depth n and b = 40** | + | **The minimum |
^Depth^Worst case^Best case^ | ^Depth^Worst case^Best case^ | ||
- | |n|b^n|< | + | |n|< |
|1|40|40| | |1|40|40| | ||
|2|1, | |2|1, | ||
Line 36: | Line 36: | ||
|8|6, | |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 99: | Line 106: | ||
http:// | http:// | ||
+ | |||
+ | http:// |
chess/programming/search/alpha-beta.1633994597.txt.gz · Last modified: 2021/10/11 23:23 by peter