diff options
author | Jack Vehmeier <vehme003@umn.edu> | 2021-04-28 15:51:33 -0500 |
---|---|---|
committer | Jack Vehmeier <vehme003@umn.edu> | 2021-04-28 15:51:33 -0500 |
commit | 216e2e9a1a5ada9d224afaff1441defd0fb455f5 (patch) | |
tree | 496b715da0edb24fe3579f8df7e8d4baa5541e64 /python/GameState.py | |
parent | alphabeta is closer (diff) | |
download | csci4511w-216e2e9a1a5ada9d224afaff1441defd0fb455f5.tar csci4511w-216e2e9a1a5ada9d224afaff1441defd0fb455f5.tar.gz csci4511w-216e2e9a1a5ada9d224afaff1441defd0fb455f5.tar.bz2 csci4511w-216e2e9a1a5ada9d224afaff1441defd0fb455f5.tar.lz csci4511w-216e2e9a1a5ada9d224afaff1441defd0fb455f5.tar.xz csci4511w-216e2e9a1a5ada9d224afaff1441defd0fb455f5.tar.zst csci4511w-216e2e9a1a5ada9d224afaff1441defd0fb455f5.zip |
fixed
Diffstat (limited to 'python/GameState.py')
-rw-r--r-- | python/GameState.py | 2 |
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 |