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.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/test_monteCarlo.py b/tests/test_monteCarlo.py
new file mode 100644
index 0000000..8fe6f47
--- /dev/null
+++ b/tests/test_monteCarlo.py
@@ -0,0 +1,22 @@
+"""Tests for the MonteCarlo algorithm."""
+
+import unittest
+
+from imago.gameLogic.gameBoard import GameBoard
+from imago.gameLogic.gameMove import GameMove
+from imago.engine.monteCarlo import MCTSNode
+
+TEST_BOARD_SIZE = 19
+
+class TestMonteCarlo(unittest.TestCase):
+ """Test MonteCarlo algorithm."""
+
+ def testSimulation(self):
+ """Test calculation of group liberties."""
+ board = GameBoard(TEST_BOARD_SIZE, TEST_BOARD_SIZE)
+ move = GameMove(board)
+ node = MCTSNode(move, None)
+ node.simulation()
+
+if __name__ == '__main__':
+ unittest.main()