1
0
Fork 0

Simplify use_time_management() and allow composing

like other `go` commands wtime/btime can now be composed.

`go depth 10 wtime 100`

will let the engine use standard time management but stop if depth 10 is reached.

fixes https://github.com/official-stockfish/Stockfish/issues/2767

closes https://github.com/official-stockfish/Stockfish/pull/2768

No functional change
pull/2775/head
Niklas Fiekas 2020-06-24 23:03:00 +02:00 committed by Joost VandeVondele
parent ab5cd8340f
commit a84e3ac287
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ struct LimitsType {
}
bool use_time_management() const {
return !(mate | movetime | depth | nodes | perft | infinite);
return time[WHITE] || time[BLACK];
}
std::vector<Move> searchmoves;