mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 17:46:26 +08:00
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:
committed by
Marco Costalba
parent
9fcefb2760
commit
b8cfc255d4
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user