Debug quit command

This commit is contained in:
Loic Guegan 2022-02-27 19:50:06 +01:00
parent cce0131c30
commit 7be95e7bcd

View file

@ -237,7 +237,9 @@ void UCI::debug(bool d) {
}
}
void UCI::ponderhit() { Command("ponderhit"); }
void UCI::quit() { Command("quit"); }
void UCI::quit() {
p->Write(cmd + "\n"); // Note that we should no do a sync!
}
void UCI::ucinewgame() { Command("ucinewgame"); }
void UCI::position(std::string fen, std::string moves) {
position(fen + " moves " + moves);