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
def __init__(self, agent_id, evaluation, depth=2): Agents.__init__(self, agent_id, evaluation) self.max_depth = depth