We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 460c54f commit fbaa538Copy full SHA for fbaa538
src/search.cpp
@@ -968,6 +968,9 @@ Value Search::Worker::search(
968
969
Value futilityValue = ss->staticEval + (bestMove ? 96 : 215) + 120 * lmrDepth;
970
971
+ if (bestValue < ss->staticEval - 150 && lmrDepth < 7)
972
+ futilityValue += 108;
973
+
974
// Futility pruning: parent node
975
if (!ss->inCheck && lmrDepth < 10 && futilityValue <= alpha)
976
{
0 commit comments