X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fuci.cpp;h=95f6f349dd3cf4675407ac7ebb54efd32df4464b;hb=b4e9ee72e36aadd0e653ac4ab5c07a9e3d639aca;hp=8139fae4fd8be84099af2e1eae1c103aa4f8ae59;hpb=b59786e750a59d3d7cff2630cf284553f607ed29;p=stockfish diff --git a/src/uci.cpp b/src/uci.cpp index 8139fae4..95f6f349 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -82,8 +82,8 @@ void position(Position& pos, std::istringstream& is, StateListPtr& states) { } } -// Prints the evaluation of the current position, consistent with -// the UCI options set so far. +// Prints the evaluation of the current position, +// consistent with the UCI options set so far. void trace_eval(Position& pos) { StateListPtr states(new std::deque(1)); @@ -122,9 +122,8 @@ void setoption(std::istringstream& is) { } -// Called when the engine receives the "go" UCI command. The function -// sets the thinking time and other parameters from the input string, then starts -// with a search. +// Called when the engine receives the "go" UCI command. The function sets the +// thinking time and other parameters from the input string then stars with a search void go(Position& pos, std::istringstream& is, StateListPtr& states) {