A command-line tool to generate a tournament schedule
Project description
A tool to generate a CSV export of the best tournament schedule for the specified number of teams and fields, under the constraint that every team must play the same amount of games on some fields (all fields by default).
Can be used either as a command-line tool or as a regular Python module.
Installation
Through PyPI
$ pip install tournament-scheduler
Manually
$ git clone https://github.com/fdebellabre/tournament-scheduler && cd tournament-scheduler
$ pip install .
Usage
From the command line
Either specify the team names
$ scheduler --nfield 6 Paris Bordeaux Lille Lyon Marseille Nantes Toulouse
Or specify the number of teams
$ scheduler --nteams 7 --nfield 6
From within Python
import scheduler
import numpy as np
import pandas as pd
nteams = 10
nfields = 3
bestfields = 1
teams = ['Team ' + str(z+1) for z in range(nteams)]
games = scheduler.get_best_schedule(teams,nfields,bestfields)
# Field distribution quality
scheduler.get_aggregate_data(games)
# Schedule quality
np.array(scheduler.get_gap_info(games)) # gaps between games (rows are teams)
# Save the schedule to csv
schedule = scheduler.pivot_schedule(games)
schedule.to_csv('schedule.csv')
Procedure
The goal of this program is to optimize a schedule for a group tournament with those characteristics:
- any two teams must meet once
- some fields may be better than others
- each team must play the same amount of games on the better fields, and on every other field if possible
In addition to those constraints, we want to minimize the overall duration of the tournament and to optimize the rest time, such that no team has to wait for too long between two games.
The original use-case for this optimization problem was a soccer tournament with 10 teams and 3 fields, one of which being better than the others.
1. Getting a list of games to play on each field
In our setup, all fields are not equal. Each team must play the same number of games on the better fields (and on all fields if possible). We get a perfect match when this happens.
To get the best possible match between games and fields, I created the python function get_best_match. Depending on the number of fields and teams, there cannot always be a perfect match.
Here is a summary of what this function does:
- Try and get each team to play as much as the other teams on every field
- If not possible, at least have the teams play the same number of games on the better fields.
- If not possible, decrement the number of fields to play on (e.g. if 5 fields are available but there is no satisfactory solution, we try and get a solution with 4 fields).
2. Optimizing the schedule with respect to some criteria
Criteria: we want to minimize the rest periods between games. In order of priority, we minimize:
- The maximum gap between any two games of the same team
- The maximum gap before+after a game
- The average (across teams) maximum gap between any two games of the same team
The python function get_best_schedule randomly tries different schedules and returns the best of them, according to criterion 1, then criterion 2, then criterion 3.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tournament-scheduler-0.1.3.tar.gz
.
File metadata
- Download URL: tournament-scheduler-0.1.3.tar.gz
- Upload date:
- Size: 20.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88748d0c9901e173d963115ab247bfbd78478d4c77f0b5523ec5d3ba458fd5c0 |
|
MD5 | 88e92c7b17c79e57bed85764767e2796 |
|
BLAKE2b-256 | 402744b7148effa3b776b9247a6a23510dc53667df863951fc8ce6fbd329888c |
File details
Details for the file tournament_scheduler-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: tournament_scheduler-0.1.3-py3-none-any.whl
- Upload date:
- Size: 20.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ad57b76a79f2e5e1794b4c468a1e311f2c8c07643192720e1825b3c7b22d1bc |
|
MD5 | 1b4f019f06928f0c27e086e6685a5264 |
|
BLAKE2b-256 | 556cbac4d51522b5f647bb4d1dd32489fdec29fd942f55ca806bb1b51974f311 |