Skip to content

Commit

Permalink
Removing history condition
Browse files Browse the repository at this point in the history
Removing the bad history condition from the skip futility pruning formula.

Passed STC:
LLR: 2.93 (-2.94,2.94) <-1.75,0.25>
Total: 142688 W: 36420 L: 36317 D: 69951
Ptnml(0-2): 481, 16653, 36970, 16762, 478
https://tests.stockfishchess.org/tests/view/65270a663125598fc7eb8c67

Passed LTC:
LLR: 2.94 (-2.94,2.94) <-1.75,0.25>
Total: 435378 W: 110723 L: 110925 D: 213730
Ptnml(0-2): 278, 47251, 122788, 47139, 233
https://tests.stockfishchess.org/tests/view/6528595f3125598fc7eba8f5

closes #4834

Bench: 1110579
  • Loading branch information
FauziAkram authored and vondele committed Oct 21, 2023
1 parent d3d0c69 commit 90c18b0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -786,8 +786,7 @@ namespace {
&& eval >= beta
&& eval < 29462 // smaller than TB wins
&& !( !ttCapture
&& ttMove
&& thisThread->mainHistory[us][from_to(ttMove)] < 989))
&& ttMove))
return eval;

// Step 9. Null move search with verification search (~35 Elo)
Expand Down

0 comments on commit 90c18b0

Please sign in to comment.