aboutsummaryrefslogtreecommitdiff
path: root/tests/test_monteCarlo.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_monteCarlo.py')
-rw-r--r--tests/test_monteCarlo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_monteCarlo.py b/tests/test_monteCarlo.py
index 283c657..b217cf9 100644
--- a/tests/test_monteCarlo.py
+++ b/tests/test_monteCarlo.py
@@ -14,8 +14,8 @@ class TestMonteCarlo(unittest.TestCase):
def testPickMove(self):
"""Test picking a move."""
state = GameState(TEST_BOARD_SIZE)
- tree = MCTS(state)
- print(tree.pickMove().toString())
+ tree = MCTS(state.lastMove)
+ #print(tree.pickMove().toString())
#def testSimulation(self):
# """Test calculation of group liberties."""