mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Simplify lowply-history logic
Don't restrict usage to ttPv nodes exclusively STC: http://tests.stockfishchess.org/tests/view/5e5634f284a82b4acd41499a LLR: 2.94 (-2.94,2.94) {-1.50,0.50} Total: 152796 W: 29146 L: 29178 D: 94472 Ptnml(0-2): 2590, 17792, 35628, 17836, 2552 LTC: http://tests.stockfishchess.org/tests/view/5e575d4984a82b4acd4149e8 LLR: 2.95 (-2.94,2.94) {-1.50,0.50} Total: 20078 W: 2688 L: 2587 D: 14803 Ptnml(0-2): 139, 1914, 5853, 1973, 160 closes https://github.com/official-stockfish/Stockfish/pull/2565 bench: 4923286
This commit is contained in:
parent
09f53dbfa5
commit
f27339d35b
1 changed files with 1 additions and 1 deletions
|
@ -957,7 +957,7 @@ moves_loop: // When in check, search starts from here
|
||||||
contHist,
|
contHist,
|
||||||
countermove,
|
countermove,
|
||||||
ss->killers,
|
ss->killers,
|
||||||
depth > 12 && ttPv ? ss->ply : MAX_PLY);
|
depth > 12 ? ss->ply : MAX_PLY);
|
||||||
|
|
||||||
value = bestValue;
|
value = bestValue;
|
||||||
singularLMR = moveCountPruning = false;
|
singularLMR = moveCountPruning = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue