mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 17:46:26 +08:00
Triviality in UCI::loop
Code style paranoid in action here :-) No functional change.
This commit is contained in:
@@ -197,7 +197,6 @@ void UCI::loop(int argc, char* argv[]) {
|
|||||||
<< "\n" << Options
|
<< "\n" << Options
|
||||||
<< "\nuciok" << sync_endl;
|
<< "\nuciok" << sync_endl;
|
||||||
|
|
||||||
else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl;
|
|
||||||
else if (token == "ucinewgame") TT.clear();
|
else if (token == "ucinewgame") TT.clear();
|
||||||
else if (token == "go") go(pos, is);
|
else if (token == "go") go(pos, is);
|
||||||
else if (token == "position") position(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 == "bench") benchmark(pos, is);
|
||||||
else if (token == "d") sync_cout << pos.pretty() << sync_endl;
|
else if (token == "d") sync_cout << pos.pretty() << sync_endl;
|
||||||
else if (token == "isready") sync_cout << "readyok" << sync_endl;
|
else if (token == "isready") sync_cout << "readyok" << sync_endl;
|
||||||
|
else if (token == "eval") sync_cout << Eval::trace(pos) << sync_endl;
|
||||||
else
|
else
|
||||||
sync_cout << "Unknown command: " << cmd << sync_endl;
|
sync_cout << "Unknown command: " << cmd << sync_endl;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user