aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2021-04-28 17:24:22 -0500
committerMatt Strapp <strap012@umn.edu>2021-04-28 17:24:22 -0500
commitce92a60f6639803384ed2df3fb41e1f6e3f2f9a5 (patch)
treedb4c8dc537d6ed8b79f4fe4ba818d50021ddfd06 /python
parentDouble time (diff)
downloadcsci4511w-ce92a60f6639803384ed2df3fb41e1f6e3f2f9a5.tar
csci4511w-ce92a60f6639803384ed2df3fb41e1f6e3f2f9a5.tar.gz
csci4511w-ce92a60f6639803384ed2df3fb41e1f6e3f2f9a5.tar.bz2
csci4511w-ce92a60f6639803384ed2df3fb41e1f6e3f2f9a5.tar.lz
csci4511w-ce92a60f6639803384ed2df3fb41e1f6e3f2f9a5.tar.xz
csci4511w-ce92a60f6639803384ed2df3fb41e1f6e3f2f9a5.tar.zst
csci4511w-ce92a60f6639803384ed2df3fb41e1f6e3f2f9a5.zip
Revert "Uncomment thing essential for choosing legal moves"
This reverts commit 5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.
Diffstat (limited to 'python')
-rw-r--r--python/GameState.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/GameState.py b/python/GameState.py
index 6047f8d..9e780a9 100644
--- a/python/GameState.py
+++ b/python/GameState.py
@@ -81,7 +81,7 @@ class DotsAndBoxesState(GameState):
def play_move(self, move):
r, c, o = move
- assert move in self.get_moves()
+ #assert move in self.get_moves()
# check if this move makes a box
makes_box = False