X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.cpp;h=d09ced9a670937dc44ffd4a9422950d06d6a426a;hb=cc7bcd5303a645223a6cd853817d3172754243aa;hp=4a41a8b0b09e275284424c37bed3d8f2edcb69d3;hpb=22b7909809c731aea691184dd7c1a2b02c5946af;p=stockfish diff --git a/src/search.cpp b/src/search.cpp index 4a41a8b0..d09ced9a 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -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;