aboutsummaryrefslogtreecommitdiffstats
path: root/python/agent_AB.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/agent_AB.py')
-rw-r--r--python/agent_AB.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/agent_AB.py b/python/agent_AB.py
index f8cab77..4725917 100644
--- a/python/agent_AB.py
+++ b/python/agent_AB.py
@@ -27,7 +27,7 @@ class Agent(dba.DotsAndBoxesAgent):
self.game_state.play_move(move)
def next_action(self):
- r, c, o = self.controller.get_next_move(self.game_state, time_allowed=self.timelimit)
+ r, c, o = self.controller.miniMax(self.game_state, 3)
return r, c, o
def end_game(self):