|
Need help with a schedule generator
I am currently trying to use a schedule generator to generate a schedule, my league is a 100 game, 32 team, two sub league, four divisions of four set up.
I seem to keep running into a problem where it only schedules one division against another in sub league play. (Ex. D1 only plays teams from D2 and ignores D3 and D4)
Here is how i have tried to use the scheduler. Any help would be awesome. Thanks in advance
[general]
; General options.
; n.b. interleague and balanced options here
; only control the schedule file filename
; and header. To enforce balance or interleague
; play, use the options under [schedule].
; Whether to write to the schedule file
; claiming interleague play is supported.
interleague=true
; Whether to write to the schedule file
; claiming the schedule is balanced.
balanced=true
; The league structure, in schedule file
; format. Underscores are permitted but ignored.
structure=SL1_D1T4_D2T4_D3T4_D4T4_SL2_D1T4_D2T4_D3 T4_D4T4
[schedule]
; Scheduling options. The scheduling engine will
; create a schedule with exactly this many games,
; or inform you what to change to create a valid
; schedule.
; This many divisional games.
divisional_games=30
; This many subleague games.
subleague_games=64
; This many interleague/interdivisional games.
interleague_games=6
; If set to true, the scheduling engine will attempt
; to set up interdivisional pools between divisions
; of the same size.
match_divisions=true
; If set to true, the scheduling engine will attempt
; to set up interleague pools between leagues of the
; of the same size.
match_subleagues=true
; If set to true, the scheduling engine will attempt
; to set up interleague pools between divisions of
; the same size. If enabled at the same time as
; match_subleagues, match_subleagues will take
; priority.
match_subleagues_by_division=true
[divisional-series]
; Series scheduling options.
; The preferred length for series.
preferred_length=3
; In each division (or subleague, or all teams,
; for the two following sections), teams will
; be divided into this many pools.
pool_count=3
[subleague-series]
preferred_length=3
pool_count=8
[interleague-series]
preferred_length=2
pool_count=3
|