コード例 #1
0
ファイル: farmer_agents.py プロジェクト: Akua1919/CS181-AI
 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
コード例 #2
0
ファイル: farmer_agents.py プロジェクト: Akua1919/CS181-AI
 def __init__(self, agent_id, evaluation, depth=2):
     Agents.__init__(self, agent_id, evaluation)
     self.max_depth = depth