X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftimeman.cpp;h=d624dfb26f8d07bbd8c81b9530453d4c19a0d0f7;hp=146818e6fde6efac0638ae87ee459e7adedb6f78;hb=13a73f67c018e58b2fd46f886c45ef2b75188c8e;hpb=500b9b0eb3b20ef58ff1280a089ab2ef1e3c6436 diff --git a/src/timeman.cpp b/src/timeman.cpp index 146818e6..d624dfb2 100644 --- a/src/timeman.cpp +++ b/src/timeman.cpp @@ -112,11 +112,11 @@ void TimeManager::init(const Search::LimitsType& limits, int currentPly, Color u 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