]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Simplify a condition
[stockfish] / src / search.cpp
index 4a41a8b0b09e275284424c37bed3d8f2edcb69d3..d09ced9a670937dc44ffd4a9422950d06d6a426a 100644 (file)
@@ -1197,7 +1197,7 @@ moves_loop: // When in check, search starts here
           // deeper than the first move (this may lead to hidden double extensions).
           int deeper =   r >= -1                   ? 0
                        : moveCount <= 4            ? 2
-                       : PvNode && depth > 4       ? 1
+                       : PvNode                    ? 1
                        : cutNode && moveCount <= 8 ? 1
                        :                             0;