Created
April 3, 2016 20:26
-
-
Save drvinceknight/d8f48f03ca5a353fee1099c9d3af3716 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axelrod as axl | |
players = [axl.Cooperator(), axl.Defector(), axl.TitForTat(), | |
axl.PSOGambler(), axl.BackStabber(), axl.ThueMorse()] | |
tournament = axl.Tournament(players, processes=2) | |
results = tournament.play() | |
print(results.ranked_names) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment