mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 09:47:46 +00:00
Pass also opponent time to think()
This patch modifies think() signature to accept also opponent time. This is needed for future changes to time managment. Still no functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+1
-1
@@ -124,6 +124,6 @@ void benchmark(const std::string& commandLine) {
|
||||
{
|
||||
Move moves[1] = {MOVE_NONE};
|
||||
Position pos(*it);
|
||||
think(pos, true, false, 0, 0, 0, 0, 0, secsPerPos * 1000, moves);
|
||||
think(pos, true, false, 0, 0, 0, 0, 0, 0, secsPerPos * 1000, moves);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user