X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fuci.cpp;h=644fc4738acbaf41ef84549afa5e7ade86d50403;hb=54f8a9cb138a1bc0b0054b98f911fafd8d1b03ad;hp=f4d71962fda0d58ab17f1fb4dff9160bfc2b1dff;hpb=e49eb67119f772ef6fcecb736cf136b851ee72cc;p=stockfish diff --git a/src/uci.cpp b/src/uci.cpp index f4d71962..644fc473 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -197,14 +197,18 @@ void UCI::loop(int argc, char* argv[]) { << "\n" << Options << "\nuciok" << sync_endl; - else if (token == "ucinewgame") TT.clear(); + else if (token == "eval") + { + Search::RootColor = pos.side_to_move(); // Ensure it is set + sync_cout << Eval::trace(pos) << sync_endl; + } + 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); 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 sync_cout << "Unknown command: " << cmd << sync_endl;