aboutsummaryrefslogtreecommitdiffstats
path: root/python/MCTS.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/MCTS.py')
-rw-r--r--python/MCTS.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/python/MCTS.py b/python/MCTS.py
index cf67f48..677d994 100644
--- a/python/MCTS.py
+++ b/python/MCTS.py
@@ -132,7 +132,6 @@ class MCTSGameController(GameController):
def get_next_move(self, state, time_allowed=1.0):
super(MCTSGameController, self).get_next_move(state)
- # Create new tree (TODO: Preserve some state for better performance?)
self.root_node = MCTSNode(state)
iterations = 0