]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Futile pruning simplification
[stockfish] / src / search.cpp
index 6275cdf283e3961fc5c4529b57b5788271434ea7..187f21694ef932d543eb474f8914719d9c2a46f1 100644 (file)
@@ -1023,11 +1023,7 @@ moves_loop: // When in check, search starts here
 
               // Futility pruning: parent node (~5 Elo)
               if (   !ss->inCheck
-                  && ss->staticEval + 174 + 157 * lmrDepth <= alpha
-                  &&  (*contHist[0])[movedPiece][to_sq(move)]
-                    + (*contHist[1])[movedPiece][to_sq(move)]
-                    + (*contHist[3])[movedPiece][to_sq(move)]
-                    + (*contHist[5])[movedPiece][to_sq(move)] / 3 < 28255)
+                  && ss->staticEval + 174 + 157 * lmrDepth <= alpha)
                   continue;
 
               // Prune moves with negative SEE (~20 Elo)