X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftimeman.cpp;h=3bc9a317d6aabfc8c31f720360b5312ddc2181a8;hb=7a1ff6d8ff39bb9e6844d24467899d47e942486f;hp=e1b3d4e641e43a2e7e25e95c92904b50d9feeca4;hpb=9a1d5f0f1d8a12a85b198688d4f1d636a146eb7a;p=stockfish diff --git a/src/timeman.cpp b/src/timeman.cpp index e1b3d4e6..3bc9a317 100644 --- a/src/timeman.cpp +++ b/src/timeman.cpp @@ -17,8 +17,8 @@ along with this program. If not, see . */ -#include #include +#include #include "search.h" #include "timeman.h" @@ -29,7 +29,7 @@ namespace { /// Constants const int MoveHorizon = 50; // Plan time management at most this many moves ahead - const float MaxRatio = 3.0f; // When in trouble, we can step over reserved time with this ratio + const float MaxRatio = 7.0f; // When in trouble, we can step over reserved time with this ratio const float StealRatio = 0.33f; // However we must not steal time from remaining moves over this ratio @@ -76,10 +76,9 @@ namespace { } -void TimeManager::pv_instability(int curChanges, int prevChanges) { +void TimeManager::pv_instability(float bestMoveChanges) { - unstablePVExtraTime = curChanges * (optimumSearchTime / 2) - + prevChanges * (optimumSearchTime / 3); + unstablePVExtraTime = int(bestMoveChanges * optimumSearchTime); } @@ -111,7 +110,12 @@ void TimeManager::init(const Search::LimitsType& limits, int currentPly, Color u // Initialize to maximum values but unstablePVExtraTime that is reset unstablePVExtraTime = 0; - optimumSearchTime = maximumSearchTime = limits.time[us]; + optimumSearchTime = maximumSearchTime = limits.time[us]; // In msec + + // Scale down emergencyBaseTime if we are under very high time pressure to + // avoid moving immediately and so blundering. + if (maximumSearchTime) + emergencyBaseTime /= std::max(emergencyBaseTime * 100 / maximumSearchTime, 1); // We calculate optimum time usage for different hypothetic "moves to go"-values and choose the // minimum of calculated search time values. Usually the greatest hypMTG gives the minimum values.