Exemple #1
0
 def __init__(self, agent_id, evaluation):
     Agents.__init__(self, agent_id, evaluation)
     self.wins = {}  # a (agent_id, state): count dict
     self.plays = {}  # a (agent_id, state): count dict
     self.depth = 60
     self.simulation_time = 10
Exemple #2
0
 def __init__(self, agent_id, evaluation, depth=2):
     Agents.__init__(self, agent_id, evaluation)
     self.max_depth = depth