aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/MCTS.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/MCTS.py b/python/MCTS.py
index 89f65a4..677d994 100644
--- a/python/MCTS.py
+++ b/python/MCTS.py
@@ -129,7 +129,7 @@ class MCTSGameController(GameController):
node.score += node.get_score(result)
node = node.parent
- def get_next_move(self, state, time_allowed=2.0):
+ def get_next_move(self, state, time_allowed=1.0):
super(MCTSGameController, self).get_next_move(state)
self.root_node = MCTSNode(state)