Simplify start_searching() signature

Retire the "sync" behaviour that now is up to
the caller to honour.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2012-03-26 18:56:48 +01:00
parent d11a529904
commit 3d0d0237c5
4 changed files with 7 additions and 11 deletions

View File

@@ -228,7 +228,7 @@ namespace {
limits.time = time[pos.side_to_move()];
limits.increment = inc[pos.side_to_move()];
Threads.start_searching(pos, limits, searchMoves, true);
Threads.start_searching(pos, limits, searchMoves);
}