X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=10519bb1c0a004fabc12777cd78f4334ec7551df;hp=ddaad41725aae83c8161549199649990ca719c68;hb=66a1a7748748db63cb4ff6d7dfb5ba1dabfc9d0b;hpb=a66a7c3870d7b88054d0d6b7c7f734a60fab27f4 diff --git a/src/uci.cpp b/src/uci.cpp index ddaad417..10519bb1 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -44,7 +44,7 @@ namespace { void set_option(istringstream& up); void set_position(Position& pos, istringstream& up); - void go(Position& pos, istringstream& up); + void go(const Position& pos, istringstream& up); } @@ -66,22 +66,17 @@ void UCI::loop(const string& args) { is >> skipws >> token; - if (token == "quit" || token == "stop") + if (token == "quit" || token == "stop" || token == "ponderhit") { - Search::Signals.stop = true; - Threads.main_thread()->wake_up(); // Could be sleeping - } - else if (token == "ponderhit") - { - // GUI sends "ponderhit" if we were told to ponder on the same move the + // GUI sends 'ponderhit' to tell us to ponder on the same move the // opponent has played. In case Signals.stopOnPonderhit is set we are - // waiting for "ponderhit" to stop the search (for instance because we + // waiting for 'ponderhit' to stop the search (for instance because we // already ran out of time), otherwise we should continue searching but // switching from pondering to normal search. - if (Search::Signals.stopOnPonderhit) + if (token != "ponderhit" || Search::Signals.stopOnPonderhit) { Search::Signals.stop = true; - Threads.main_thread()->wake_up(); // Could be sleeping + Threads.main_thread()->notify_one(); // Could be sleeping } else Search::Limits.ponder = false; @@ -118,7 +113,7 @@ void UCI::loop(const string& args) { } while (token != "quit" && args.empty()); // Args have one-shot behaviour - Threads.wait_for_search_finished(); // Cannot quit while search is running + Threads.wait_for_think_finished(); // Cannot quit while search is running } @@ -187,7 +182,7 @@ namespace { // the thinking time and other parameters from the input string, and starts // the search. - void go(Position& pos, istringstream& is) { + void go(const Position& pos, istringstream& is) { Search::LimitsType limits; vector searchMoves; @@ -212,6 +207,6 @@ namespace { else if (token == "ponder") limits.ponder = true; } - Threads.start_searching(pos, limits, searchMoves, SetupStates); + Threads.start_thinking(pos, limits, searchMoves, SetupStates); } }