]> git.sesse.net Git - stockfish/blobdiff - src/timeman.h
More readable init of MS1BTable[]
[stockfish] / src / timeman.h
index 4896fe6e3bfadcb15701b4d20b26cbfeae8bd83d..3ee7b319787564d1c914220b9627247122276efe 100644 (file)
 #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(float bestMoveChanges);
+  void pv_instability(double bestMoveChanges);
   int available_time() const { return optimumSearchTime + unstablePVExtraTime; }
   int maximum_time() const { return maximumSearchTime; }