]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Remove Capture history pruning
[stockfish] / src / search.cpp
index eb0ac5bbd02c856c2a9d85989af21f22eafcacf5..988166df9bb1682a6094654853c7f7c5b77239c3 100644 (file)
@@ -1031,12 +1031,6 @@ moves_loop: // When in check, search starts here
           if (   captureOrPromotion
               || givesCheck)
           {
-              // Capture history based pruning when the move doesn't give check
-              if (   !givesCheck
-                  && lmrDepth < 1
-                  && captureHistory[movedPiece][to_sq(move)][type_of(pos.piece_on(to_sq(move)))] < 0)
-                  continue;
-
               // Futility pruning for captures
               if (   !pos.empty(to_sq(move))
                   && !givesCheck