X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftimeman.cpp;h=2612fb52fa88762474170f182a1ef98846180b04;hb=c33af32dada1be9f6aed851e8cf87599203e2eb2;hp=330709be6985d84be15be778dfc8746eccd0741a;hpb=fe60caba94de11932d6cdb9bb0282da0221c9f20;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; }