]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Remove some conditions at PV improvement reduction
[stockfish] / src / search.cpp
index 390c6b1c72fb37eb87940d71105d7fdf7f3ad80e..ed81263a364f78a6dd8e37f3cbd85f3d2f800946 100644 (file)
@@ -1331,9 +1331,6 @@ moves_loop: // When in check, search starts here
               {
                   // Reduce other moves if we have found at least one score improvement (~1 Elo)
                   if (   depth > 1
-                      && (   (improving && complexity > 971)
-                          || value < (5 * alpha + 75 * beta) / 87
-                          || depth < 6)
                       && beta  <  12535
                       && value > -12535)
                       depth -= 1;