Arena Tournament
class ArenaTournament(val eloCalculator: EloCalculator = EloCalculator(), val idGenerator: () -> Any? = null, val id: Any? = null, val name: String? = null, val timeControl: String? = null, val type: String? = null) : Tournament
An arena style tournament.
Properties
Link copied to clipboard
Current matches being played.
Link copied to clipboard
The strategy used for rating adjustments.
Link copied to clipboard
All concluded matches in the tournament history.
Link copied to clipboard
Unique ID generator for assigning identifiers to match objects.
Link copied to clipboard
Current player standings, ordered by score and tie-breakers.
Link copied to clipboard
The strategy for breaking ties in the leaderboard.
Link copied to clipboard
The specific time settings for the matches (e.g., "3+2", "10|0"). Returns null if no specific time control has been defined.