aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2021-04-28 16:14:03 -0500
committerMatt Strapp <strap012@umn.edu>2021-04-28 16:14:03 -0500
commit5f44f3b84c39154599924e3a79b0f9a1ac0d08a8 (patch)
tree8bf35619c9b1ce4ee103de14d9c4b756013b6029
parentMerge branch 'master' of https://github.umn.edu/smit9523/CSCI-4511W-Project (diff)
downloadcsci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar
csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.gz
csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.bz2
csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.lz
csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.xz
csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.tar.zst
csci4511w-5f44f3b84c39154599924e3a79b0f9a1ac0d08a8.zip
Uncomment thing essential for choosing legal moves
-rw-r--r--python/GameState.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/GameState.py b/python/GameState.py
index 9e780a9..6047f8d 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