]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Remove lmrDepth restriction on quiet see pruning
[stockfish] / src / search.cpp
index c678cd5340badeafdd3f9790511a9b908c9ca916..fb5dfd00776c4a549f196c2761f2452ffb1abd7b 100644 (file)
@@ -947,8 +947,7 @@ moves_loop: // When in check, search starts from here
                   continue;
 
               // Prune moves with negative SEE (~10 Elo)
-              if (   lmrDepth < 8
-                  && !pos.see_ge(move, Value(-35 * lmrDepth * lmrDepth)))
+              if (!pos.see_ge(move, Value(-29 * lmrDepth * lmrDepth)))
                   continue;
           }
           else if (   !extension // (~20 Elo)