X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftimeman.cpp;h=e05c4626f31723c65593c6f995306708414de99a;hp=fb817e56d5ddfd8f1345b87e36855bb0712f2936;hb=7733dadfd7c8781e3bde3cc4e21751fa44ab6ed8;hpb=dda53e831d369c5d02ccdebed1a2dcc781fc11c0 diff --git a/src/timeman.cpp b/src/timeman.cpp index fb817e56..e05c4626 100644 --- a/src/timeman.cpp +++ b/src/timeman.cpp @@ -88,8 +88,13 @@ namespace { //// Functions //// -void TimeManager::update(int myTime, int myInc, int movesToGo, int currentPly, - int* optimumSearchTime, int* maximumSearchTime) +void TimeManager::pv_instability(int curChanges, int prevChanges) { + + unstablePVExtraTime = curChanges * (optimumSearchTime / 2) + + prevChanges * (optimumSearchTime / 3); +} + +void TimeManager::init(int myTime, int myInc, int movesToGo, int currentPly) { /* We support four different kind of time controls: @@ -106,7 +111,7 @@ void TimeManager::update(int myTime, int myInc, int movesToGo, int currentPly, minThinkingTime :No matter what, use at least this much thinking before doing the move */ - int hypMTG, hypMyTime, mTime, aTime; + int hypMTG, hypMyTime, t1, t2; // Read uci parameters int emergencyMoveHorizon = get_option_value_int("Emergency Move Horizon"); @@ -114,8 +119,9 @@ void TimeManager::update(int myTime, int myInc, int movesToGo, int currentPly, int emergencyMoveTime = get_option_value_int("Emergency Move Time"); int minThinkingTime = get_option_value_int("Minimum Thinking Time"); - // Initialize variables to maximum values - *optimumSearchTime = *maximumSearchTime = myTime; + // Initialize to maximum values but unstablePVExtraTime that is reset + unstablePVExtraTime = 0; + optimumSearchTime = maximumSearchTime = myTime; // 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. @@ -124,18 +130,18 @@ void TimeManager::update(int myTime, int myInc, int movesToGo, int currentPly, // Calculate thinking time for hypothetic "moves to go"-value hypMyTime = Max(myTime + (hypMTG - 1) * myInc - emergencyBaseTime - Min(hypMTG, emergencyMoveHorizon) * emergencyMoveTime, 0); - mTime = minThinkingTime + remaining(hypMyTime, hypMTG, currentPly); - aTime = minThinkingTime + remaining(hypMyTime, hypMTG, currentPly); + t1 = minThinkingTime + remaining(hypMyTime, hypMTG, currentPly); + t2 = minThinkingTime + remaining(hypMyTime, hypMTG, currentPly); - *optimumSearchTime = Min(*optimumSearchTime, mTime); - *maximumSearchTime = Min(*maximumSearchTime, aTime); + optimumSearchTime = Min(optimumSearchTime, t1); + maximumSearchTime = Min(maximumSearchTime, t2); } if (get_option_value_bool("Ponder")) - *optimumSearchTime += *optimumSearchTime / 4; + optimumSearchTime += optimumSearchTime / 4; // Make sure that maxSearchTime is not over absoluteMaxSearchTime - *optimumSearchTime = Min(*optimumSearchTime, *maximumSearchTime); + optimumSearchTime = Min(optimumSearchTime, maximumSearchTime); } ////