diff --git a/src/search.cpp b/src/search.cpp index f53c116c..d6748c76 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1160,7 +1160,7 @@ moves_loop: // When in check, search starts here r += 330; - r -= std::min(std::abs(correctionValue) / 32768, 2048); + r -= std::abs(correctionValue) / 32768; // Increase reduction for cut nodes (~4 Elo) if (cutNode)