X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.cpp;h=03d72b95373b412a543cf72641893817c5351348;hb=222f3ea55bab2414c4c260391ffd14dabc1684df;hp=ce9ed9508aa2e03af4af54c7740225211c8baf11;hpb=d97a02ea2b9328e666aff7a906820c9ec65ab381;p=stockfish diff --git a/src/search.cpp b/src/search.cpp index ce9ed950..03d72b95 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1099,7 +1099,7 @@ moves_loop: // When in check, search starts here // If we are on a cutNode, reduce it based on depth (negative extension) (~1 Elo) else if (cutNode) - extension = depth > 8 && depth < 17 ? -3 : -1; + extension = depth < 17 ? -3 : -1; // If the eval of ttMove is less than value, we reduce it (negative extension) (~1 Elo) else if (ttValue <= value)