mirror of
https://gitlab.com/manzerbredes/uciadapter.git
synced 2025-04-05 17:46:27 +02:00
Debug quit command
This commit is contained in:
parent
cce0131c30
commit
7be95e7bcd
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue