aboutsummaryrefslogtreecommitdiff
path: root/imago/engine/monteCarlo.py
diff options
context:
space:
mode:
Diffstat (limited to 'imago/engine/monteCarlo.py')
-rw-r--r--imago/engine/monteCarlo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/imago/engine/monteCarlo.py b/imago/engine/monteCarlo.py
index f4712e6..ee8380a 100644
--- a/imago/engine/monteCarlo.py
+++ b/imago/engine/monteCarlo.py
@@ -15,7 +15,7 @@ class MCTS(DecisionAlgorithm):
self.simulationsPerExpansion = 10
self.debug = False
- def forceNextMove(self, coords):
+ def forceNextMove(self, coords: tuple):
"""Selects given move as next move."""
for node in self.root.children:
if (node.move.isPass and coords == "pass" or