aboutsummaryrefslogtreecommitdiffstats
path: root/python/agent_MCTS.py
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2021-04-26 14:52:40 -0500
committerMatt Strapp <strap012@umn.edu>2021-04-26 15:03:24 -0500
commitc4e01e7d1d6f670410a416227b70d2950451f68a (patch)
tree39ded728d30ebf5f73d2053c546bc3972c501b84 /python/agent_MCTS.py
parentAdd debug configs, (diff)
downloadcsci4511w-c4e01e7d1d6f670410a416227b70d2950451f68a.tar
csci4511w-c4e01e7d1d6f670410a416227b70d2950451f68a.tar.gz
csci4511w-c4e01e7d1d6f670410a416227b70d2950451f68a.tar.bz2
csci4511w-c4e01e7d1d6f670410a416227b70d2950451f68a.tar.lz
csci4511w-c4e01e7d1d6f670410a416227b70d2950451f68a.tar.xz
csci4511w-c4e01e7d1d6f670410a416227b70d2950451f68a.tar.zst
csci4511w-c4e01e7d1d6f670410a416227b70d2950451f68a.zip
Start work on AB
Diffstat (limited to 'python/agent_MCTS.py')
-rw-r--r--python/agent_MCTS.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/agent_MCTS.py b/python/agent_MCTS.py
index b0072cf..b60f5ec 100644
--- a/python/agent_MCTS.py
+++ b/python/agent_MCTS.py
@@ -5,8 +5,6 @@ import argparse
import logging
from GameState import GameState, DotsAndBoxesState
from MCTS import MCTSNode, MCTSGameController
-import alphaBeta
-
logger = logging.getLogger(__name__)
games = {}