mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-12-17 19:22:18 +01:00
DroidFish: Updated stockfish to version 2.2.2.
This commit is contained in:
@@ -201,7 +201,7 @@ namespace {
|
||||
|
||||
string token;
|
||||
Search::LimitsType limits;
|
||||
std::vector<Move> searchMoves;
|
||||
std::set<Move> searchMoves;
|
||||
int time[] = { 0, 0 }, inc[] = { 0, 0 };
|
||||
|
||||
while (is >> token)
|
||||
@@ -228,7 +228,7 @@ namespace {
|
||||
is >> limits.maxTime;
|
||||
else if (token == "searchmoves")
|
||||
while (is >> token)
|
||||
searchMoves.push_back(move_from_uci(pos, token));
|
||||
searchMoves.insert(move_from_uci(pos, token));
|
||||
}
|
||||
|
||||
limits.time = time[pos.side_to_move()];
|
||||
|
||||
Reference in New Issue
Block a user