Skip to content

Commit

Permalink
Remove lowPly history
Browse files Browse the repository at this point in the history
Seems that after pull official-stockfish#3731 (Capping stat bonus at 2000) this
heuristic is no more useful.

STC:
https://tests.stockfishchess.org/tests/view/61b8d0e2dffbe89a35815444
LLR: 2.94 (-2.94,2.94) <-2.25,0.25>
Total: 30672 W: 7974 L: 7812 D: 14886
Ptnml(0-2): 106, 3436, 8072, 3634, 88

LTC:
https://tests.stockfishchess.org/tests/view/61b8e90cdffbe89a35815a67
LLR: 2.94 (-2.94,2.94) <-2.25,0.25>
Total: 42448 W: 10884 L: 10751 D: 20813
Ptnml(0-2): 23, 4394, 12267, 4507, 33

bench: 4801890
  • Loading branch information
pb00067 authored and pb00067 committed Dec 15, 2021
1 parent 1bc46b2 commit 12e4e2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ namespace {
{
// Bonus for a quiet ttMove that fails high
if (!ttCapture)
update_quiet_stats(pos, ss, ttMove, stat_bonus(depth));
update_quiet_stats(pos, ss, ttMove, stat_bonus(depth));

// Extra penalty for early quiet moves of the previous ply
if ((ss-1)->moveCount <= 2 && !priorCapture)
Expand Down

0 comments on commit 12e4e2d

Please sign in to comment.