1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-07-11 19:49:14 +00:00

Remove 4*IncrementalFutilityMargin from futilityValue

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2009-11-21 14:41:07 +01:00
parent c52da3b806
commit 889c8538a8

View file

@ -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;