class RoundRobinTester {

    public static void main(String[] args) {
        Prisoner[] prisoners = {
            new TitForTat("COOPERATE"), new TitForTat("DEFECT"), new Rand(), 
            new Majority("COOPERATE"), new Majority("DEFECT") 
        };
        RoundRobinTournament rrt = new RoundRobinTournament(prisoners);
        rrt.run(200);
        rrt.displayLeagueTable();
    }
    
}
