Пример #1
0
 def simulate(self, phit, n_games=100):
     wins = 0
     legacy = self.is_legacy(phit)
     for _ in range(n_games):
         wins += 1 == BlackJack(phit, legacy=legacy).play()
     print("Player won {} out of {} games (win rate = {:.1%})".format(
         wins, n_games, wins / n_games))
Пример #2
0
 def simulate(cls, n_games=100):
     phit = cls._get_injected_args()[0]
     wins = 0
     for _ in range(n_games):
         wins += 1 == BlackJack(phit).play()
     print("Player won {} out of {} games (win rate = {:.1%})".format(
         wins, n_games, wins/n_games
         ))
Пример #3
0
 def simulate_one_game(self, phit):
     game = BlackJack(phit, True, self.is_legacy(phit))
     game.play()
Пример #4
0
 def simulate_one_game(cls):
     phit = cls._get_injected_args()[0]
     game = BlackJack(phit, True)
     game.play()