# Properties to setup a random tournament #**************************************** # PlayersNumber => number of players PlayersNumber=100 # RoundsNumber => number of rounds RoundsNumber=9 # 'Rate' properties # GenericRate is the probability (in thousands) that for a game # (or for a round) the "Generic" event happens # GenericRate=10 means one game every 100 # GenericRate=0 means that the Generic event will not happen # ForfeitRate => rate for forfeited games (scheduled but not played) ForfeitRate=20 # QuickgameRate => rate for games ended in less than one full move QuickgameRate=5 # ZPBRate => rate for players announcing their absence in a particular round ZPBRate=10 # HPBRate => rate for players asking for a half-point-bye HPBRate=30 # FPBRate => rate for players given a full-point-bye FPBRate=0 # HighestRating => highest possible rating of a player in the tournament HighestRating=2650 # LowestRating => lowest possible rating of a player in the tournament LowestRating=1000 # Groups and Separator work in obscure ways # # Indicatively, Separator defines how many points the rating of the median # player is below the medium point between the highest and the lowest ratings. Separator=100 # Players rating are distributed in a gaussian way around the rating of the # median player (in the rating limits expressed above). # The sigma is indicatively given by "(HighestRating - LowestRating) / (Groups + 1)" # However, Groups is automatically incremented when too many players would pass # the HighestRating Groups=2 # Scoring point system # WWPoints => points for win with White # BWPoints => points for win with Black # WDPoints => points for draw with White # BDPoints => points for draw with Black # WLPoints => points for loss with White # BLPoints => points for loss with Black # ZPBPoints => points for zero-point-bye # HPBPoints => points for half-point-bye # FPBPoints => points for full-point-bye # PABPoints => points for pairing-allocated-bye (PAB) # FWPoints => points for forfeit win # FLPoints => points for forfeit loss # # Below there is the representation of the scoring point system # used in some Polish youth tournaments: # 3 point for win, 2 for draw, 1 for loss, 0 for missing a game. # No half or full point-byes are allowed. PAB is 2 or 3 points WWPoints=3.0 BWPoints=3.0 WDPoints=2.0 BDPoints=2.0 WLPoints=1.0 BLPoints=1.0 ZPBPoints=0.0 HPBPoints=0.0 FPBPoints=0.0 PABPoints=2.0 FWPoints=3.0 FLPoints=0.0