Framework for NoGo and similar games (C++ 11) Modified from 2048-Framework
To make the sample program:
make # see makefile for detailsTo run the sample program:
./nogo # by default the program runs 1000 gamesTo specify the total games to run:
./nogo --total=1000To display the statistics every 1 episode:
./nogo --total=1000 --block=1 --limit=1To specify the total games to run, and seed the player:
./nogo --total=1000 --black="seed=12345" --white="seed=54321"To save the statistics result to a file:
./nogo --save=stats.txtTo load and review the statistics result from a file:
./nogo --load=stats.txtTo specify custom player arguments (need to be implemented by yourself):
./nogo --total=1000 --black="search=MCTS timeout=1000" --white="search=alpha-beta depth=3"To launch the GTP shell and specify program name for the GTP server:
./nogo --shell --name="MyNoGo" --version="1.0"To launch the GTP shell with custom player arguments:
./nogo --shell --black="search=MCTS simulation=1000" --white="search=alpha-beta depth=3"Theory of Computer Games, Computer Games and Intelligence (CGI) Lab, NYCU, Taiwan