mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
Simplify futility pruning formula
closes https://github.com/official-stockfish/Stockfish/pull/4848 No functional change
This commit is contained in:
parent
0024133b08
commit
871ab55f01
1 changed files with 1 additions and 1 deletions
|
@ -775,7 +775,7 @@ Value search(Position& pos, Stack* ss, Value alpha, Value beta, Depth depth, boo
|
||||||
- (ss - 1)->statScore / 321
|
- (ss - 1)->statScore / 321
|
||||||
>= beta
|
>= beta
|
||||||
&& eval >= beta && eval < 29462 // smaller than TB wins
|
&& eval >= beta && eval < 29462 // smaller than TB wins
|
||||||
&& !(!ttCapture && ttMove))
|
&& (!ttMove || ttCapture))
|
||||||
return eval;
|
return eval;
|
||||||
|
|
||||||
// Step 9. Null move search with verification search (~35 Elo)
|
// Step 9. Null move search with verification search (~35 Elo)
|
||||||
|
|
Loading…
Add table
Reference in a new issue