]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Simplify some qsearch conditions
[stockfish] / src / search.cpp
index db9a5a8d01d2a0d729f7e6d390e8995f502b9ffa..616d11336eee92595882ce885f2175d114782e81 100644 (file)
@@ -1496,7 +1496,7 @@ moves_loop: // When in check, search starts here
             return bestValue;
         }
 
-        if (PvNode && bestValue > alpha)
+        if (bestValue > alpha)
             alpha = bestValue;
 
         futilityBase = bestValue + 200;
@@ -1608,7 +1608,7 @@ moves_loop: // When in check, search starts here
                 if (PvNode) // Update pv even in fail-high case
                     update_pv(ss->pv, move, (ss+1)->pv);
 
-                if (PvNode && value < beta) // Update alpha here!
+                if (value < beta) // Update alpha here!
                     alpha = value;
                 else
                     break; // Fail high