X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=ed370483435366e62e459ea00a985b3a288ed8f0;hp=3a42ac5fda950e67c53755250dc0a12559602570;hb=7c8a8e038f0acd48a30ec7e3971c7d0efcfbf25d;hpb=161c6b025e763d6bcc8339a614be312f2b173437 diff --git a/src/uci.cpp b/src/uci.cpp index 3a42ac5f..ed370483 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -83,9 +83,6 @@ void uci_loop() { else if (token == "go") go(pos, is); - else if (token == "ucinewgame") - pos.from_fen(StartFEN, false); - else if (token == "isready") cout << "readyok" << endl; @@ -105,10 +102,7 @@ void uci_loop() { pos.flip_me(); else if (token == "eval") - { - read_evaluation_uci_options(pos.side_to_move()); - cout << trace_evaluate(pos) << endl; - } + cout << Eval::trace(pos) << endl; else if (token == "key") cout << "key: " << hex << pos.key()