X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=a9391b50aa8ec5375ccf9db250cc64ed1a4018be;hp=2650706459abf210ac125298725c3fe7e6c8ddc7;hb=5cbcff55cc3a2ff78dd83e7a3f94c5414946f82c;hpb=adeded29fb6ce483bbbafaa0f67aa086cad968f9 diff --git a/src/uci.cpp b/src/uci.cpp index 26507064..a9391b50 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -28,7 +28,7 @@ #include "search.h" #include "thread.h" #include "tt.h" -#include "ucioption.h" +#include "uci.h" using namespace std; @@ -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; @@ -197,7 +197,6 @@ void UCI::loop(int argc, char* argv[]) { << "\n" << Options << "\nuciok" << sync_endl; - else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl; else if (token == "ucinewgame") TT.clear(); else if (token == "go") go(pos, is); else if (token == "position") position(pos, is); @@ -206,6 +205,7 @@ void UCI::loop(int argc, char* argv[]) { else if (token == "bench") benchmark(pos, is); else if (token == "d") sync_cout << pos.pretty() << 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;