From 0002595c67d63a85f30038f6723cc6ce2986b65b Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 28 Apr 2021 16:21:44 -0500 Subject: Double time (to test) --- python/MCTS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/MCTS.py b/python/MCTS.py index 677d994..89f65a4 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=1.0): + def get_next_move(self, state, time_allowed=2.0): super(MCTSGameController, self).get_next_move(state) self.root_node = MCTSNode(state) -- cgit v1.2.3