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.
2 parents 0b78e30 + a0b2a35 commit e5ccec1Copy full SHA for e5ccec1
quantecon/game_theory/tests/test_random.py
@@ -28,9 +28,9 @@ 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-8)
+ assert_allclose(payoff_profile[i], payoff_profile[-1], atol=1e-7)
34
35
rho = -1 / (N - 1)
36
0 commit comments