]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Remove an useless comparison in futility pruning
[stockfish] / src / search.cpp
index a30776801970d1bde0502beaa8b4ca882572c03a..21a130332e4bfdf5e1626e070232bab67c0954e9 100644 (file)
@@ -1375,7 +1375,7 @@ namespace {
               continue;
 
           // Value based pruning
-          if (depth < 7 * OnePly && approximateEval < beta)
+          if (approximateEval < beta)
           {
               if (futilityValue == VALUE_NONE)
                   futilityValue =  evaluate(pos, ei, threadID)