X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=5e3e61b2011925bd3fad886481325098e3ecf634;hp=2185a3214fc59dd651c3e6639669cbcead83d7df;hb=231103d2cf223a087fc76dbfabc4f44cc42385a6;hpb=e4f8a4fa7f5da8287579c0c74e292974c6acfd8d diff --git a/src/search.cpp b/src/search.cpp index 2185a321..5e3e61b2 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1166,8 +1166,7 @@ moves_loop: // When in check, search starts from here if (!pos.capture_or_promotion(bestMove)) update_quiet_stats(pos, ss, bestMove, quietsSearched, quietCount, stat_bonus(depth)); else - update_capture_stats(pos, bestMove, capturesSearched, captureCount, - stat_bonus(depth + (bestValue > beta + KnightValueMg ? ONE_PLY : DEPTH_ZERO))); + update_capture_stats(pos, bestMove, capturesSearched, captureCount, stat_bonus(depth + ONE_PLY)); // Extra penalty for a quiet TT move in previous ply when it gets refuted if ((ss-1)->moveCount == 1 && !pos.captured_piece())