public void RunTest_RrKoSf5PfFiTS()
        {
            var competitors = Helpers.CompetitorListHelper.GetStandardCompetitors(5);

            TournamentStrategy tournamentStrategy = new RrKoSf5PfFiTS(2.0, 2, 2, 2);
            MatchStrategy matchStrategy = new SimpleRandomMs();

            Study study = new Study(tournamentStrategy, matchStrategy, false);
            study.Run(competitors, _numberOfTournamentIterations);

            DisplayTestResults(tournamentStrategy, matchStrategy, study);
        }
예제 #2
0
        public void StudyRrKoSf5PfFi()
        {
            List<Competitor> competitors = Helpers.CompetitorListHelper.GetEvenlySpacedCompetitors(_numberOfCompetitors);
            

            TournamentStrategy tournamentStrategy = new RrKoSf5PfFiTS(2.0, 2, 2, 2);
            MatchStrategy matchStrategy = new SimpleRandomMs();

            RunStudy(competitors, tournamentStrategy, matchStrategy);
        }