X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=cbc5038ab901889e3e875c901f07309481501349;hp=4aecad1cca7981096828d15b3217d6564330f611;hb=3f1bc9e01301d617f530b05207c4067df92543f0;hpb=e8cc5c996818c7e128bd8db7947d1c4c43be865f diff --git a/src/search.cpp b/src/search.cpp index 4aecad1c..cbc5038a 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -902,7 +902,7 @@ moves_loop: // When in check and at SpNode search starts from here // Futility pruning: parent node if (predictedDepth < 7 * ONE_PLY) { - futilityValue = ss->staticEval + futility_margin(predictedDepth) + 256; + futilityValue = ss->staticEval + futility_margin(predictedDepth) + 256; if (futilityValue <= alpha) {