X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftimeman.h;h=3ee7b319787564d1c914220b9627247122276efe;hp=e12b0007f302f37f07cb40ea8c5f6fce07a3f615;hb=1ff5ce8863cb71f42dc0f707dd566e566c658eb5;hpb=002062ae934c1fae3e56157e8e7e6451b552ada5 diff --git a/src/timeman.h b/src/timeman.h index e12b0007..3ee7b319 100644 --- a/src/timeman.h +++ b/src/timeman.h @@ -21,12 +21,12 @@ #define TIMEMAN_H_INCLUDED /// The TimeManager class computes the optimal time to think depending on the -/// maximum available time, the move game number and other parameters. +/// maximum available time, the game move number and other parameters. class TimeManager { public: void init(const Search::LimitsType& limits, int currentPly, Color us); - void pv_instability(int curChanges, int prevChanges); + void pv_instability(double bestMoveChanges); int available_time() const { return optimumSearchTime + unstablePVExtraTime; } int maximum_time() const { return maximumSearchTime; }