From 5f44f3b84c39154599924e3a79b0f9a1ac0d08a8 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 28 Apr 2021 16:14:03 -0500 Subject: Uncomment thing essential for choosing legal moves --- python/GameState.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3