diff --git a/src/search.cpp b/src/search.cpp index b2bbe19ae1e..c582871d46b 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1148,7 +1148,7 @@ Value Search::Worker::search( { // In general we want to cap the LMR depth search at newDepth, but when // reduction is negative, we allow this move a limited search extension - // beyond the first move depth. This may lead to hidden multiple extensions. + // beyond the first move depth. // To prevent problems when the max value is less than the min value, // std::clamp has been replaced by a more robust implementation. Depth d = std::max(1, std::min(newDepth - r, newDepth + 1));