## Template for parameter description file for Iterated Race.
##
## The format is one parameter per line. Each line contains:
##
## 1: Name of the parameter. An unquoted alphanumeric string,
##    example: ants

## 2: Switch to pass the parameter. A quoted (possibly empty) string,
##    if the value and the switch must be separated, add a space at
##    the end of the string. Example : "--version1 --ants "

## 3: Type. An unquoted single letter, among
##     i: Integer, c: categorical, o: ordinal, r: real.

## 4: For c and o: All possible values, that is, a variable number of
##    quoted or unquoted strings separated by commas within
##    parenthesis. Empty strings and strings containing commas or
##    spaces must be quoted.
##    For i,r: a pair of unquoted numbers representing minimum and
##    maximum values.

## 5: A conditional parameter can be defined according to the values of
##    one or several other parameters.  This is done by adding a
##    character '|' followed by an R expression involving the names of
##    other parameters. This expression must return TRUE if the
##    condition is satisfied, FALSE otherwise.

# 1:                              2:                                     3:    4:      5:
alpha                             "--alpha="                             r     (0.0, 3.0)
beta                              "--beta="                              r     (0.0, 3.0)
gamma                             "--gamma="                             r     (0.0, 0.4)
delta                             "--delta="                             r     (0.0, 0.05)
configuration_switch_threshold    "--configuration_switch_threshold="    c     ("1.0")
alpha_2                           "--alpha_2="                           c     ("1.0")
beta_2                            "--beta_2="                            c     ("1.0")
gamma_2                           "--gamma_2="                           c     ("1.0")
delta_2                           "--delta_2="                           c     ("1.0")
