From 8ad261f255859e90a93c446551911278eeec3cae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hlynur=20Dav=C3=AD=C3=B0=20Hlynsson?= Date: Mon, 30 Apr 2018 14:44:04 +0200 Subject: [PATCH] Update mcts.py --- mcts.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mcts.py b/mcts.py index 7bb4b1f..0fc4db5 100644 --- a/mcts.py +++ b/mcts.py @@ -1,5 +1,7 @@ -from game import * +# Licence is granted to freely use and distribute for any sensible/legal purpose so long as this comment +# remains in any distributed code. +from game import * class Node: """ A node in the game tree. Note wins is always from the viewpoint of playerJustMoved.