X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fuci.cpp;h=644fc4738acbaf41ef84549afa5e7ade86d50403;hb=54f8a9cb138a1bc0b0054b98f911fafd8d1b03ad;hp=e4a4393cfe7280d4e3ef9bbfd77da6e86d9cba30;hpb=b2c0634d4898a78a9e82fca9197467d442e5cb95;p=stockfish diff --git a/src/uci.cpp b/src/uci.cpp index e4a4393c..644fc473 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -174,12 +174,14 @@ void UCI::loop(int argc, char* argv[]) { else Search::Limits.ponder = false; } - else if (token == "perft" && (is >> token)) // Read perft depth + else if (token == "perft" || token == "divide") { + int depth; stringstream ss; + is >> depth; ss << Options["Hash"] << " " - << Options["Threads"] << " " << token << " current perft"; + << Options["Threads"] << " " << depth << " current " << token; benchmark(pos, ss); } @@ -188,7 +190,7 @@ void UCI::loop(int argc, char* argv[]) { << "position key: " << setw(16) << pos.key() << "\nmaterial key: " << setw(16) << pos.material_key() << "\npawn key: " << setw(16) << pos.pawn_key() - << dec << sync_endl; + << dec << nouppercase << setfill(' ') << sync_endl; else if (token == "uci") sync_cout << "id name " << engine_info(true) @@ -200,7 +202,7 @@ void UCI::loop(int argc, char* argv[]) { Search::RootColor = pos.side_to_move(); // Ensure it is set sync_cout << Eval::trace(pos) << sync_endl; } - else if (token == "ucinewgame") TT.clear(); + else if (token == "ucinewgame") { /* Avoid returning "Unknown command" */ } else if (token == "go") go(pos, is); else if (token == "position") position(pos, is); else if (token == "setoption") setoption(is);