X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftimeman.cpp;h=62b7eb11432563d4f0f8471dfc904d772c68fd78;hb=7b2cda95d9d697a047ac8df33d3805ba77590a8f;hp=bdcaee84c5f4ce10bc75198993ed6c6d315d0d30;hpb=e6482b7d97a6620cebdd569cce575d42ed80c871;p=stockfish diff --git a/src/timeman.cpp b/src/timeman.cpp index bdcaee84..62b7eb11 100644 --- a/src/timeman.cpp +++ b/src/timeman.cpp @@ -17,8 +17,8 @@ along with this program. If not, see . */ -#include #include +#include #include "search.h" #include "timeman.h" @@ -150,7 +150,7 @@ namespace { int thisMoveImportance = move_importance(currentPly) * slowMover / 100; int otherMovesImportance = 0; - for (int i = 1; i < movesToGo; i++) + for (int i = 1; i < movesToGo; ++i) otherMovesImportance += move_importance(currentPly + 2 * i); float ratio1 = (TMaxRatio * thisMoveImportance) / float(TMaxRatio * thisMoveImportance + otherMovesImportance);