X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftimeman.cpp;h=2612fb52fa88762474170f182a1ef98846180b04;hb=3fd7e37868ce3a770ab5ca5ef686f75c8aa348f4;hp=330709be6985d84be15be778dfc8746eccd0741a;hpb=9d95d43c5793d46685127d8595b6fca350c9c9bd;p=stockfish diff --git a/src/timeman.cpp b/src/timeman.cpp index 330709be..2612fb52 100644 --- a/src/timeman.cpp +++ b/src/timeman.cpp @@ -64,7 +64,7 @@ namespace { int time = int(std::min(1.0, ratio) * std::max(0, myTime - moveOverhead)); if (type == OptimumTime && ponder) - time *= 1.25; + time = 5 * time / 4; return time; }