Skip to content

Commit

Permalink
fix game2 setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rezunli96 committed Oct 14, 2023
1 parent e236f0f commit 1a747fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions open_spiel/python/algorithms/stackelberg_lp_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 1a747fa

Please sign in to comment.