Skip to content

Commit

Permalink
Since overall time consumption is increased, decrease the optimun tim…
Browse files Browse the repository at this point in the history
…e somewhat
  • Loading branch information
Stefano80 committed Apr 19, 2015
1 parent 968cf4a commit 1d09489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timeman.h
Expand Up @@ -30,7 +30,7 @@ class TimeManagement {
public:
void init(Search::LimitsType& limits, Color us, int ply, TimePoint now);
void pv_instability(double bestMoveChanges) { unstablePvFactor = 1 + bestMoveChanges; }
int available() const { return int(optimumTime * unstablePvFactor * 0.76); }
int available() const { return int(optimumTime * unstablePvFactor * 0.60); }
int maximum() const { return maximumTime; }
int elapsed() const { return int(Search::Limits.npmsec ? Search::RootPos.nodes_searched() : now() - start); }

Expand Down

0 comments on commit 1d09489

Please sign in to comment.