]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Simplify LMR multiThread condition
[stockfish] / src / search.cpp
index 0aa590f402441e71367c45b340a7bfdc487d9837..8becdd3f827195cf4b44bea3ab6b01020b94a8fd 100644 (file)
@@ -1159,10 +1159,9 @@ moves_loop: // When in check, search starts here
       // cases where we extend a son if it has good chances to be "interesting".
       if (    depth >= 3
           &&  moveCount > 1 + 2 * rootNode
-          && (  !captureOrPromotion
-              || (cutNode && (ss-1)->moveCount > 1)
-              || !ss->ttPv)
-          && (!PvNode || ss->ply > 1 || thisThread->id() % 4 != 3))
+          && (   !ss->ttPv
+              || !captureOrPromotion
+              || (cutNode && (ss-1)->moveCount > 1)))
       {
           Depth r = reduction(improving, depth, moveCount, rangeReduction > 2);