/usr/share/doc/tourney-manager/example.conf is in tourney-manager 20070820-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | # Example configuration file for tourney manager.
###############################################################################
# General options
###############################################################################
# Path to xboard binary
xboard_path = /usr/games/xboard
#xboard_path = c:\games\winboard\winboard.exe
# General arguments to xboard.
xboard_user_args = -autoflag #-adjudicateLossThreshold -700
# Uncomment this if you are using winboard.
#winboard = 1
###############################################################################
# Tourney configuration
###############################################################################
# Number of games per match.
games_per_match = 4
# If set, matches are not played as a whole, but in chunks of games_per_turn
# games.
# For example, if games_per_match = 8 and games_per_turn = 2, first the
# first 2 games of each match are played, then the next 2 games of each
# match, and so on.
#games_per_turn = 2
# Time controls. If time_increment is set, incremental time controls are
# used, and moves_per_session is ignored. If time_increment is unset, or
# set to -1, a 'x moves in y minutes' time control is used.
time_per_session = 2
#time_increment = 5
moves_per_session = 40
# Tourney type
# Available types are:
# rr (round-robin, default if nothing is specified)
# gauntlet (also set option 'gauntlet_player' below)
type = rr
# Include engine configuration
include example-engines.conf
# Select which players should actually play the tournament. If no players
# are specified, all known engines are added as players.
player = HoiChess
player = GNU Chess
player = Sjeng
player = Crafty
# For gauntlets, at least one engine must be specified that should
# play the gauntlet matches.
gauntlet_player = HoiChess
gauntlet_player = Crafty
|