]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Remove cutNode condition
[stockfish] / src / search.cpp
index ba5ea2e54f9e3d7f92553016dfd503b11fa2cf12..b3ca8c9afe531582cd41811f8aeaf190bbb33c74 100644 (file)
@@ -1207,8 +1207,8 @@ moves_loop:  // When in check, search starts here
         // Step 18. Full-depth search when LMR is skipped
         else if (!PvNode || moveCount > 1)
         {
-            // Increase reduction for cut nodes without ttMove (~1 Elo)
-            if (!ttMove && cutNode)
+            // Increase reduction if ttMove is not present (~1 Elo)
+            if (!ttMove)
                 r += 2;
 
             // Note that if expected reduction is high, we reduce search depth by 1 here