X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=8b90c22707574d1b41b21b53e11d74016309a504;hp=bc412012d8f09d7f9e4034f909840d9f71fdd8f9;hb=076b62310ee874adb38d2c9610aad163db65e2e8;hpb=bd33766da0a00d9df69afcbf31a75d5f9972f1c8 diff --git a/src/uci.cpp b/src/uci.cpp index bc412012..8b90c227 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -77,8 +77,8 @@ bool execute_uci_command(const string& cmd) { else if (token == "uci") cout << "id name " << engine_name() - << "\nid author " << engine_author() - << "\n" << options_to_uci() + << "\nid author " << engine_authors() + << "\n" << Options.print_all() << "\nuciok" << endl; else if (token == "ucinewgame") @@ -97,7 +97,10 @@ bool execute_uci_command(const string& cmd) { pos.print(); else if (token == "eval") + { + read_evaluation_uci_options(pos.side_to_move()); cout << trace_evaluate(pos) << endl; + } else if (token == "key") cout << "key: " << hex << pos.get_key()