public void RunTest_RrKoSfPfFiTS() { var competitors = Helpers.CompetitorListHelper.GetStandardCompetitors(8); TournamentStrategy tournamentStrategy = new RrKoSfPfFiTS(2.0, 2, 2, 2); MatchStrategy matchStrategy = new SimpleRandomMs(); Study study = new Study(tournamentStrategy, matchStrategy, false); study.Run(competitors, _numberOfTournamentIterations); DisplayTestResults(tournamentStrategy, matchStrategy, study); }
public void StudyRrKoSfPfFi() { List<Competitor> competitors = Helpers.CompetitorListHelper.GetEvenlySpacedCompetitors(_numberOfCompetitors); TournamentStrategy tournamentStrategy = new RrKoSfPfFiTS(2.0, 2, 2, 2); MatchStrategy matchStrategy = new SimpleRandomMs(); RunStudy(competitors, tournamentStrategy, matchStrategy); }