]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Accessor for SquareBB #2067
[stockfish] / src / search.cpp
index cf934fc92c15434066828c72498f87f0d7f8e340..7043e49dbe2bd8cac54fee35c5365baad1685cd0 100644 (file)
@@ -970,8 +970,7 @@ moves_loop: // When in check, search starts from here
               if (!pos.see_ge(move, Value(-29 * lmrDepth * lmrDepth)))
                   continue;
           }
-          else if (   !extension // (~20 Elo)
-                   && !pos.see_ge(move, -PawnValueEg * (depth / ONE_PLY)))
+          else if (!pos.see_ge(move, -PawnValueEg * (depth / ONE_PLY))) // (~20 Elo)
                   continue;
       }