Reshuffle in timeman.cpp

Move template definitions before call site.

No functional change.
This commit is contained in:
Marco Costalba
2014-04-12 12:00:37 +02:00
parent 800ba28e83
commit 17cb7e7fa3
2 changed files with 20 additions and 37 deletions

View File

@@ -26,7 +26,7 @@
class TimeManager {
public:
void init(const Search::LimitsType& limits, int currentPly, Color us);
void pv_instability(double bestMoveChanges);
void pv_instability(double bestMoveChanges) { unstablePvFactor = 1 + bestMoveChanges; }
int available_time() const { return int(optimumSearchTime * unstablePvFactor * 0.71); }
int maximum_time() const { return maximumSearchTime; }