X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftimeman.h;h=0da083dc6bd9b8c68ebee2cfa25c7521bfbaa380;hp=00a3328cf623cdfb17e12cf07648626a28e9ebb4;hb=4d1220d672d5f0b9cf1b0908cd685d685f1a26eb;hpb=aa31f7f096adef50fe119b41d4e7834c41fec310 diff --git a/src/timeman.h b/src/timeman.h index 00a3328c..0da083dc 100644 --- a/src/timeman.h +++ b/src/timeman.h @@ -32,7 +32,7 @@ class TimeManagement { public: void init(Search::LimitsType& limits, Color us, int ply); void pv_instability(double bestMoveChanges) { unstablePvFactor = 1 + bestMoveChanges; } - int available() const { return int(optimumTime * unstablePvFactor * 0.968); } + int available() const { return int(optimumTime * unstablePvFactor * 1.01); } int maximum() const { return maximumTime; } int elapsed() const { return int(Search::Limits.npmsec ? Threads.nodes_searched() : now() - startTime); }