diff --git a/src/search.cpp b/src/search.cpp index 81c25fecc..2cab7bd9d 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1237,7 +1237,7 @@ moves_loop: // When in check, search starts here // std::clamp has been replaced by a more robust implementation. Depth d = std::max(1, std::min(newDepth - r / 1024, newDepth + !allNode + (PvNode && !bestMove))) - + (!cutNode && (ss - 1)->isPvNode && moveCount < 8); + + ((ss - 1)->isPvNode && moveCount < 8); ss->reduction = newDepth - d; value = -search(pos, ss + 1, -(alpha + 1), -alpha, d, true);