From: Marco Costalba Date: Sat, 21 Nov 2009 13:41:07 +0000 (+0100) Subject: Remove 4*IncrementalFutilityMargin from futilityValue X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=889c8538a8d75ff7b9aa38beb21b9dc1a15b2bac Remove 4*IncrementalFutilityMargin from futilityValue Signed-off-by: Marco Costalba --- diff --git a/src/search.cpp b/src/search.cpp index b6029e0c..faac36ce 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1473,8 +1473,7 @@ namespace { { if (futilityValue == VALUE_NONE) futilityValue = evaluate(pos, ei, threadID) - + 64*(1+bitScanReverse32(int(depth) * int(depth))) - + 4*IncrementalFutilityMargin; + + 64*(1+bitScanReverse32(int(depth) * int(depth))); futilityValueScaled = futilityValue - moveCount * IncrementalFutilityMargin;