jluttine / bayes-league

Bayesian ranking of players in a league/tournament
GNU Affero General Public License v3.0
0 stars 0 forks source link

Make bulk create matches easier to use #42

Open jluttine opened 3 months ago

jluttine commented 3 months ago

With odd number of players, should you choose all players or drop one player? Difficult to remember..

Program the following logic if the number of players is odd:

Or, hmm, if all but one have played N matches and one has played N-1 matches, that player should be included. So, a bit smarter logic is needed.. Perhaps, for instance, check the median number of matches and if the player with least matches has less than that, then include all, otherwise drop the player with most matches played.

jluttine commented 3 months ago

But if new rounds are created on the fly, how to make the ordering such that no team needs to play consecutive matches? :thinking: