]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Do more aggressive futility pruning for captures
[stockfish] / src / search.cpp
index 9cdc7046ef764bba82ed87ccecccdb091aa3a128..201cd974d58dde631976c9da140c7e8bedddf1b7 100644 (file)
@@ -1055,7 +1055,7 @@ moves_loop: // When in check, search starts from here
                   && !(PvNode && abs(bestValue) < 2)
                   && PieceValue[MG][type_of(movedPiece)] >= PieceValue[MG][type_of(pos.piece_on(to_sq(move)))]
                   && !ss->inCheck
-                  && ss->staticEval + 267 + 391 * lmrDepth
+                  && ss->staticEval + 178 + 261 * lmrDepth
                      + PieceValue[MG][type_of(pos.piece_on(to_sq(move)))] <= alpha)
                   continue;