DroidFish: Updated stockfish to version 2.2.2.

This commit is contained in:
Peter Osterlund
2012-01-15 01:13:33 +00:00
parent ff40f9adc2
commit ca1482a80a
25 changed files with 555 additions and 638 deletions

View File

@@ -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()];