c-chess-cli is a command line interface for UCI chess engines written in C. Free from dependency hell, it only uses the C standard library, and POSIX. Primarily developped on Linux, it should work on all POSIX operating systems, including MacOS and Android. Windows is not supported.
Run make.py script, without any parameters.
See make.py --help for more options.
c-chess-cli [-each [eng_options]] -engine [eng_options] -engine [eng_options] ... [options]
./c-chess-cli -each tc=4+0.04 option.Hash=8 option.Threads=1 \
-engine cmd=demolito "option.Time Buffer=80" nodes=200000 \
-engine cmd=../Engines/critter_1.6a depth=11 \
-games 1920 -concurrency 8 -openings file=test/chess960.epd order=random -repeat \
-sprt elo0=1 elo1=5 -resign 3 700 -draw 8 10 -pgn out.pgn 2
engine OPTIONS: Add an engine defined byOPTIONSto the tournament.each OPTIONS: ApplyOPTIONSto each engine in the tournament.concurrency N: Set the maximum number of concurrent games to N (default value 1).draw COUNT SCORE: Adjudicate the game as a draw, if the score of both engines is withinSCOREcentipawns from zero, for at leastCOUNTconsecutive moves.resign COUNT SCORE: Adjudicate the game as a loss, if an engine's score is at leastSCOREcentipawns below zero, for at leastCOUNTconsecutive moves.games N: Play N games per encounter (default value 1). This value should be set to an even number in tournaments with more than two players to make sure that each player plays an equal number of games with white and black pieces.rounds N: Multiply the number of rounds to play byN(default value 1). This only makes sense to use for tournaments with more than 2 engines.gauntlet: Play a gauntlet tournament (first engine against the others). The default is to play a round-robin (plays all pairs).- with
n=2engines, both gauntlet and round-robin just play the number of-gamesspecified. - gauntlet for
n>2:G(e1, ..., en) = G(e1, e2) + G(e2, ..., en). There aren-1pairs. - round-robin for
n>2:RR(e1, ..., en) = G(e1, ..., en) + RR(e2, ..., en). There aren(n-1)/2pairs. - using
-roundsrepeats the tournament-roundstimes. The number of games played for each pair is therefore-games * -rounds.
- with
sprt [elo0=E0] elo1=E1 [alpha=A] [beta=B]: Performs a Sequential Probability Ratio Test forH1: elo=E1vsH0: elo=E0, wherealphais the type I error probability (false positive), andbetais type II error probability (false negative). Default values areelo0=0, andalpha=beta=0.05. This can only be used in matches between two players.log: Write all I/O communication with engines to file(s). This producesc-chess-cli.id.log, whereidis the thread id (range1..concurrency). Note that all communications (including error messages) starting with[id]mean within the context of thread numberid, which tells you which log file to inspect (id = 0 is the main thread, which does not product a log file, but simply writes to stdout).openings file=FILE [order=ORDER] [srand=N]:- Read opening positions from
FILE, in EPD format. Note that Chess960 is auto-detected, at position level (not at file level), andFILEcan mix Chess and Chess960 positions. Both X-FEN (KQkq) and S-FEN (HAha) are supported for Chess960. ordercan berandomorsequential(default value).srandsets the seed of the random number generator toN. The default valueN=0will set the seed automatically to an unpredictable number. Any non-zero number will generate a unique, reproducible random sequence.
- Read opening positions from
pgn FILE [VERBOSITY]: Save games toFILE, in PGN format.VERBOSITYis optional0produces a PGN with headers and results only, which can be used with rating tools like BayesElo or Ordo.1adds the moves to the PGN.2adds comments of the form{score/depth}.3(default value) adds time usage to the comments{score/depth time}.
repeat: Repeat each opening twice, with each engine playing both sides.sample freq[,resolvePv[,file]]. See below.
cmd=COMMAND: Set the command to run the engine.- The current working directory will be set automatically, if a
/is contained inCOMMAND. For example,cmd=../Engines/critter_1.6a, will run./critter_1.6afrom../Engines. If no/is found, the command is executed as is. Without/, for examplecmd=demolitowill rundemolito, which only works ifdemolitois inPATH. - Arguments can be provided as part of the command. For example
"cmd=../fooEngine -foo=1". Note that the""are needed here, for the command line interpreter to parse the whole string as a single token.
- The current working directory will be set automatically, if a
name=NAME: Set the engine's name. If omitted, the name is take from theid namevalue sent by the engine.tc=TIMECONTROL: Set the time control toTIMECONTROL. The format ismoves/time+increment, wheremovesis the number of moves per tc,timeis time per tc (in seconds), andincrementis time increment per move (in seconds).movetime=N: time limit per move, in seconds (can be fractional likemovetime=0.123).depth=N: depth limit per move.nodes=N: node limit per move.option.OPTION=VALUE: Set custom option OPTION to value VALUE.
The purpose of this feature is to the generate training data, which can be used to fit the parameters of a chess engine evaluation, otherwise known as supervised learning.
Using -sample freq[,resolvePv[,file]] will generate a csv file of samples, in this format:
fen,score,result
where score is the search result (in cp), and result is the result of the game from the side to move's perspective (0=loss, 1=draw, 2=win).
Using resolvePv=y does two things:
- First, it resolves the PV, which means that it plays the PV and reocords the position at the end (leaf node), instea of the current position (root node).
- Second, it guarantees that the recorded fen is not in check (by recording the last PV position that is not in check, if that is possible, else discarding the sample).