Build a live tournament runtime from a specification
Examples
my_spec <- spec() |>
swiss("open", rounds = 3) |>
single_elim("playoffs", take = top_n(4))
# Materialize with participants
trn <- build(my_spec, paste("Team", LETTERS[1:8]))
Build a live tournament runtime from a specification
my_spec <- spec() |>
swiss("open", rounds = 3) |>
single_elim("playoffs", take = top_n(4))
# Materialize with participants
trn <- build(my_spec, paste("Team", LETTERS[1:8]))