]> git.sesse.net Git - stockfish/commitdiff
Simplify reduction when best move doesn't change frequently.
authorbmc4 <bmc4@cin.ufpe.br>
Tue, 15 Jun 2021 23:56:09 +0000 (20:56 -0300)
committerStéphane Nicolet <cassio@free.fr>
Thu, 17 Jun 2021 00:08:33 +0000 (02:08 +0200)
STC:
LLR: 2.94 (-2.94,2.94) <-2.50,0.50>
Total: 40400 W: 3468 L: 3377 D: 33555
Ptnml(0-2): 134, 2734, 14388, 2795, 149
https://tests.stockfishchess.org/tests/view/60c93e5a457376eb8bcab15f

LTC:
LLR: 2.94 (-2.94,2.94) <-2.50,0.50>
Total: 34200 W: 1190 L: 1128 D: 31882
Ptnml(0-2): 22, 998, 15001, 1054, 25
https://tests.stockfishchess.org/tests/view/60c96a1a457376eb8bcab180

closes https://github.com/official-stockfish/Stockfish/pull/3559

bench: 5629669

src/search.cpp

index b8756d381397bd9aeed94a899a1e361695ff3b8d..9bba563a7796ba7ac0f5191e1c804a9f8998bbf9 100644 (file)
@@ -1157,7 +1157,6 @@ moves_loop: // When in check, search starts from here
 
           // Increase reduction at root and non-PV nodes when the best move does not change frequently
           if (   (rootNode || !PvNode)
-              && thisThread->rootDepth > 10
               && thisThread->bestMoveChanges <= 2)
               r++;