X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=7bc90b143d10b85a94ff0a4cbf9f214e9d0b3525;hp=39ed624c9ecc2408234b63c8518c843d3610fe77;hb=cddda7cd194c38c6d4e87956b0b32f52755fc62a;hpb=c81010a8780d998d0d9a8bd28fd83402736f563b diff --git a/src/search.cpp b/src/search.cpp index 39ed624c..7bc90b14 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1540,14 +1540,10 @@ namespace { // Use the cached evaluation score if possible assert(ei.futilityMargin == Value(0)); - staticValue = tte->value(); + staticValue = tte->value() + ply; } else - { - staticValue = evaluate(pos, ei, threadID); - if (!value_is_mate(staticValue + Value(ply))) - staticValue += Value(ply); - } + staticValue = evaluate(pos, ei, threadID) + ply; if (ply == PLY_MAX - 1) return evaluate(pos, ei, threadID); @@ -1560,7 +1556,7 @@ namespace { { // Store the score to avoid a future costly evaluation() call if (!isCheck && !tte && ei.futilityMargin == 0) - TT.store(pos.get_key(), value_to_tt(bestValue, ply), VALUE_TYPE_EVAL, Depth(-127*OnePly), MOVE_NONE); + TT.store(pos.get_key(), bestValue - ply, VALUE_TYPE_EVAL, Depth(-127*OnePly), MOVE_NONE); return bestValue; }