Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. if __name__ == '__main__':
  2. game = Game()
  3. print '==== Use simple regret-matching strategy === '
  4. game.play()
  5. print '==== Use averaged regret-matching strategy === '
  6. game.conclude()
  7. game.play(avg_regret_matching=True)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement