X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=220bf55f9beac657f10dd69eec43e0416454ea28;hp=b87c689479d2a7909667a591d31c49b6b6cc21d4;hb=c5d6ae8c9615dd510b99c2d6b0138ac58aece2e1;hpb=a0486ecb40513db8141fa27c026f64771b8ebb55 diff --git a/src/search.cpp b/src/search.cpp index b87c6894..220bf55f 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1166,7 +1166,8 @@ 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)); + update_capture_stats(pos, bestMove, capturesSearched, captureCount, + stat_bonus(depth + bool(bestValue > beta + KnightValueMg) * ONE_PLY)); // Extra penalty for a quiet TT move in previous ply when it gets refuted if ((ss-1)->moveCount == 1 && !pos.captured_piece())