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, 1 insertions, 0 deletions
diff --git a/python/MCTS.py b/python/MCTS.py
index 6c71ba9..cf67f48 100644
--- a/python/MCTS.py
+++ b/python/MCTS.py
@@ -21,6 +21,7 @@ class MCTSNode(object):
"""
def __init__(self, state, parent=None, move=None):
+
self.parent = parent
self.move = move
self.state = state