]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Use if instead of goto
[stockfish] / src / search.cpp
index ac026a79e1ce208a26f4bb9c7fc6477be703bcd2..8f8d42c02873f19b56abe9afe666c4109b2177ee 100644 (file)
@@ -1025,7 +1025,7 @@ moves_loop: // When in check, search starts from here
           else
           {
               // Continuation history based pruning (~20 Elo)
-              if (   lmrDepth < 4
+              if (   lmrDepth < 5
                   && (*contHist[0])[movedPiece][to_sq(move)] < CounterMovePruneThreshold
                   && (*contHist[1])[movedPiece][to_sq(move)] < CounterMovePruneThreshold)
                   continue;