Distribute part of first move time to other moves

Passed both short TC:
LLR: 2.97 (-2.94,2.94) [-1.50,4.50]
Total: 18907 W: 3475 L: 3322 D: 12110

And long TC:
LLR: 2.96 (-2.94,2.94) [0.00,6.00]
Total: 19044 W: 2997 L: 2811 D: 13236

bench: 8430785
This commit is contained in:
Leonid Pechenik
2014-02-20 08:38:10 +01:00
committed by Marco Costalba
parent 9fcefb2760
commit b8cfc255d4
3 changed files with 6 additions and 7 deletions

View File

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