Remove non-functional std::min()

closes https://github.com/official-stockfish/Stockfish/pull/5749

No functional change
This commit is contained in:
Daniel Monroe
2025-01-05 15:18:09 -08:00
committed by Disservin
parent 1611b9c940
commit c76c179361

View File

@@ -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)