]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Re-add "Pawn Structure" UCI option
[stockfish] / src / search.cpp
index 8ba5b41af8be9cf182a02650dc9457d7fa515239..c6ee8c86b9c425ff7e55b618ce77070f9b618914 100644 (file)
@@ -1251,7 +1251,6 @@ split_point_start: // At split points actual search starts from here
           // Prune moves with negative or equal SEE and also moves with positive
           // SEE where capturing piece loses a tempo and SEE < beta - futilityBase.
           if (   futilityBase < beta
-              && depth < DEPTH_ZERO
               && pos.see(move, beta - futilityBase) <= 0)
           {
               bestValue = std::max(bestValue, futilityBase);