diff options
author | Matt Strapp <strap012@umn.edu> | 2021-04-26 14:52:40 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-04-26 15:03:24 -0500 |
commit | c4e01e7d1d6f670410a416227b70d2950451f68a (patch) | |
tree | 39ded728d30ebf5f73d2053c546bc3972c501b84 /python/agent_MCTS.py | |
parent | Add debug configs, (diff) | |
download | csci4511w-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.py | 2 |
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 = {} |