We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94706c1 commit 1aac9bcCopy full SHA for 1aac9bc
tests/test_nash.py
@@ -1,10 +1,4 @@
1
-"""Test of calls to Nash equilibrium solvers.
2
-
3
-For many solvers the tests simply ensure that calling the solver works, and then for some cases,
4
-checking the expected results on a very simple game.
5
6
-There is better test coverage for
7
-lp_solve, lcp_solve, and enumpoly_solve, all in mixed behaviors.
+"""Test of calls to Nash equilibrium and QRE solvers.
8
"""
9
10
import dataclasses
@@ -19,7 +13,6 @@
19
13
from . import games
20
14
21
15
TOL = 1e-13 # standard tol for floating point assertions; not used only when it is too small
22
23
16
TOL_LARGE = 1e-3 # larger tolerance for floating point assertions
24
17
TOL_HUGE = 1e-2 # huge tolerance for floating point assertions
25
18
0 commit comments