Beispiel #1
0
        private List <Match> PairPlayers(List <Player> playersToPair)
        {
            ShuffleListBc.FisherYatesShuffle(playersToPair, Random);

            return(RotateBeforeSplit(playersToPair, 0));
        }
Beispiel #2
0
 public SwissSystem()
 {
     ShuffleListBc = new ShuffleListBc <Player>();
     Random        = new Random();
 }