in reply to Algorithm problem: Order matches by difference between players

It's not a swiss tournament, that's a truncation of a round robin tournament when there are too many players to play round robin (all play all). The OP scenario looks like a round robin being applied to each group. So the module for that would still be Games::Tournament::RoundRobin

One world, one people

  • Comment on Re: Algorithm problem: Order matches by difference between players

Replies are listed 'Best First'.
Re^2: Algorithm problem: Order matches by difference between players
by Dirk80 (Pilgrim) on Apr 19, 2011 at 18:42 UTC

    You are right. I tried the module Games::Tournament::RoundRobin. It delivers the same result apart from the order of the rounds. The last round is the same as my first round, ...

    use strict; use warnings; use Data::Dumper; use Games::Tournament::RoundRobin; my $schedule = Games::Tournament::RoundRobin->new(v => 6, league => [1 +..6]); print Dumper($schedule->wholeSchedule());