We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c36074 commit a0b2a35Copy full SHA for a0b2a35
quantecon/game_theory/tests/test_random.py
@@ -28,8 +28,8 @@ def test_covariance_game():
28
rho = 1
29
g = covariance_game(nums_actions, rho=rho)
30
for a in np.ndindex(*nums_actions):
31
+ payoff_profile = g.payoff_profile_array[a]
32
for i in range(N-1):
- payoff_profile = g.payoff_profile_array[a]
33
assert_allclose(payoff_profile[i], payoff_profile[-1], atol=1e-7)
34
35
rho = -1 / (N - 1)
0 commit comments