X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=b82eeff556bacbf1b2a66b0dbdd0341d9bb6f8f3;hp=9574ff96aada4123128df02a92eb0932af0e58bd;hb=2cb4c7052efa55d14a66aace65625d02acc044a3;hpb=40f5abba104b411ec5234e2c93b05bba8e6bd3c8 diff --git a/src/uci.cpp b/src/uci.cpp index 9574ff96..b82eeff5 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); } @@ -202,8 +204,8 @@ void UCI::loop(int argc, char* argv[]) { else if (token == "flip") pos.flip(); else if (token == "bench") benchmark(pos, is); else if (token == "d") sync_cout << pos.pretty() << sync_endl; - else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl; else if (token == "isready") sync_cout << "readyok" << sync_endl; + else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl; else sync_cout << "Unknown command: " << cmd << sync_endl;