Created
July 21, 2017 05:08
-
-
Save alasdairham/efb9a9a296d3dbe7c99f06b0add0ecdf 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
| if __name__ == '__main__': | |
| game = Game() | |
| print '==== Use simple regret-matching strategy === ' | |
| game.play() | |
| print '==== Use averaged regret-matching strategy === ' | |
| game.conclude() | |
| game.play(avg_regret_matching=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment