def __init__(self, which):
     self.players = ['stupid', 'smart']
     self.player_name = which
     if not (which in self.players):
         print "player %s not found" % which
         exit(1)
     self.hand_rules = HandRules()