]> git.sesse.net Git - stockfish/commitdiff
Simply reset StatScore to zero at beta cutoff
authorVoyagerOne <excelgeek@gmail.com>
Tue, 22 May 2018 05:21:57 +0000 (07:21 +0200)
committerStéphane Nicolet <cassio@free.fr>
Tue, 22 May 2018 05:23:04 +0000 (07:23 +0200)
STC:
LLR: 2.96 (-2.94,2.94) [-3.00,1.00]
Total: 43154 W: 8706 L: 8625 D: 25823
http://tests.stockfishchess.org/tests/view/5b01a7660ebc5914abc1271d

LTC:
LLR: 2.95 (-2.94,2.94) [-3.00,1.00]
Total: 48155 W: 7036 L: 6955 D: 34164
http://tests.stockfishchess.org/tests/view/5b01b2e50ebc5914abc1272c

Closes https://github.com/official-stockfish/Stockfish/pull/1608

Bench: 4484288

src/search.cpp

index 025c1141c97546e6e98693877fad9afff26336d5..5fd016a6db59500df25c5e2122d9ea8845c08e7a 100644 (file)
@@ -1117,7 +1117,7 @@ moves_loop: // When in check, search starts from here
               else
               {
                   assert(value >= beta); // Fail high
-                  ss->statScore = std::max(ss->statScore, 0);
+                  ss->statScore = 0;
                   break;
               }
           }