From 1a747fadc02624058c9c36a3844968a9d61adb7c Mon Sep 17 00:00:00 2001 From: lizun Date: Sat, 14 Oct 2023 15:41:00 -0400 Subject: [PATCH] fix game2 setup --- open_spiel/python/algorithms/stackelberg_lp_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/open_spiel/python/algorithms/stackelberg_lp_test.py b/open_spiel/python/algorithms/stackelberg_lp_test.py index 0edfab1928..8ca56d5329 100644 --- a/open_spiel/python/algorithms/stackelberg_lp_test.py +++ b/open_spiel/python/algorithms/stackelberg_lp_test.py @@ -33,8 +33,8 @@ commit_value1 = 4 / 3 # a game with dominated strategy -game2 = pyspiel.create_matrix_game([[3, 9], [9, 1], - [0, 0], [1, 8]]) +game2 = pyspiel.create_matrix_game([[3, 9], [9, 1]], + [[0, 0], [1, 8]]) commit_strategy2 = np.array([1.0, 0.0]) commit_value2 = 9.0