X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftimeman.cpp;h=9ca46c93313c7bf86f75f747ae7ed53923feeaaa;hp=28f9f3e80a2001a745da6bbc09399039da1f4e99;hb=d8349f9d0f4eafda145de67330abcc2cb2d9ba56;hpb=8307da0de77c9c7bbf7c56a7d9c8a688ff4dfb4e diff --git a/src/timeman.cpp b/src/timeman.cpp index 28f9f3e8..9ca46c93 100644 --- a/src/timeman.cpp +++ b/src/timeman.cpp @@ -20,7 +20,6 @@ #include #include -#include "misc.h" #include "search.h" #include "timeman.h" #include "ucioption.h" @@ -73,7 +72,7 @@ namespace { enum TimeType { OptimumTime, MaxTime }; template - int remaining(int myTime, int movesToGo, int fullMoveNumber); + int remaining(int myTime, int movesToGo, int fullMoveNumber, int slowMover); } @@ -108,6 +107,7 @@ void TimeManager::init(const Search::LimitsType& limits, int currentPly) int emergencyBaseTime = Options["Emergency Base Time"]; int emergencyMoveTime = Options["Emergency Move Time"]; int minThinkingTime = Options["Minimum Thinking Time"]; + int slowMover = Options["Slow Mover"]; // Initialize to maximum values but unstablePVExtraTime that is reset unstablePVExtraTime = 0; @@ -125,8 +125,8 @@ void TimeManager::init(const Search::LimitsType& limits, int currentPly) hypMyTime = std::max(hypMyTime, 0); - t1 = minThinkingTime + remaining(hypMyTime, hypMTG, currentPly); - t2 = minThinkingTime + remaining(hypMyTime, hypMTG, currentPly); + t1 = minThinkingTime + remaining(hypMyTime, hypMTG, currentPly, slowMover); + t2 = minThinkingTime + remaining(hypMyTime, hypMTG, currentPly, slowMover); optimumSearchTime = std::min(optimumSearchTime, t1); maximumSearchTime = std::min(maximumSearchTime, t2); @@ -143,12 +143,12 @@ void TimeManager::init(const Search::LimitsType& limits, int currentPly) namespace { template - int remaining(int myTime, int movesToGo, int currentPly) + int remaining(int myTime, int movesToGo, int currentPly, int slowMover) { const float TMaxRatio = (T == OptimumTime ? 1 : MaxRatio); const float TStealRatio = (T == OptimumTime ? 0 : StealRatio); - int thisMoveImportance = move_importance(currentPly); + int thisMoveImportance = move_importance(currentPly) * slowMover / 100; int otherMovesImportance = 0; for (int i = 1; i < movesToGo; i++)