]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - src/dunshire/options.py
Set ABS_TOL to 1e-6 to fix solution comparisons in the test suite.
[dunshire.git] / src / dunshire / options.py
index 27752e79e71af02f082367b8b5bd9bfdf4fcf2ee..c6e5c4cb079edfc7149ee8179137fb7f61975e84 100644 (file)
@@ -5,10 +5,11 @@ change them. But this makes the user interface real simple.
 """
 
 
-ABS_TOL = 1e-7
+ABS_TOL = 1e-6
 """
 The absolute tolerance used in all "are these numbers equal" and "is
-this number less than (or equal to) that other number" tests.
+this number less than (or equal to) that other number" tests. The CVXOPT
+default is ``1e-7``, and we need a little bit of padding on top of that.
 """