uci_quit {bigchess} | R Documentation |
Sending quit command to chess engine and cleaning temps from R
uci_quit(engine)
engine |
engine object |
strings from uci chess engine GUI
# Linux (make sure you have executable permission):
engine_path <- "./stockfish_10_x64"
# Windows
# engine_path <- "./stockfish_10_x64.exe"
e <- uci_engine(engine_path)
uci_quit(e)
# Using pipe '%>%' from magrittr:
require(magrittr)
uci_engine(engine_path) %>% uci_quit()