X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftimeman.cpp;h=7c3efb352a7b927fcdbabf45fc36e7340cdfd2b6;hp=146818e6fde6efac0638ae87ee459e7adedb6f78;hb=c7e7d9217b232eb7d75b083a45f001ef998c9deb;hpb=d454cd42166d71789e8c5a4d099a0c3d96ab517e diff --git a/src/timeman.cpp b/src/timeman.cpp index 146818e6..7c3efb35 100644 --- a/src/timeman.cpp +++ b/src/timeman.cpp @@ -108,15 +108,15 @@ void TimeManager::init(const Search::LimitsType& limits, int currentPly, Color u int minThinkingTime = Options["Minimum Thinking Time"]; int slowMover = Options["Slow Mover"]; - // Initialize to maximum values but unstablePVExtraTime that is reset + // Initialize all to maximum values but unstablePVExtraTime that is reset unstablePVExtraTime = 0; optimumSearchTime = maximumSearchTime = limits.time[us]; - // We calculate optimum time usage for different hypothetic "moves to go"-values and choose the + // We calculate optimum time usage for different hypothetical "moves to go"-values and choose the // minimum of calculated search time values. Usually the greatest hypMTG gives the minimum values. for (hypMTG = 1; hypMTG <= (limits.movestogo ? std::min(limits.movestogo, MoveHorizon) : MoveHorizon); ++hypMTG) { - // Calculate thinking time for hypothetic "moves to go"-value + // Calculate thinking time for hypothetical "moves to go"-value hypMyTime = limits.time[us] + limits.inc[us] * (hypMTG - 1) - emergencyBaseTime