X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=6027295d94d67ed507de3de614db236d26f9e3b2;hp=f4d71962fda0d58ab17f1fb4dff9160bfc2b1dff;hb=15e21911110f9d459c4fef2bb17903d97345d0b9;hpb=e49eb67119f772ef6fcecb736cf136b851ee72cc diff --git a/src/uci.cpp b/src/uci.cpp index f4d71962..6027295d 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -174,7 +174,7 @@ void UCI::loop(int argc, char* argv[]) { else Search::Limits.ponder = false; } - else if (token == "perft" || token == "divide") + else if (token == "perft") { int depth; stringstream ss; @@ -204,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;