]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
Set options.ABS_TOL to 1e-7; we should adjust it elsewhere if needed.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 1 Nov 2016 00:11:26 +0000 (20:11 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 1 Nov 2016 00:11:26 +0000 (20:11 -0400)
dunshire/options.py

index c6e5c4cb079edfc7149ee8179137fb7f61975e84..2a57e270e6763ba087d361bb0d81e7f57bd0d5d4 100644 (file)
@@ -5,11 +5,12 @@ change them. But this makes the user interface real simple.
 """
 
 
 """
 
 
-ABS_TOL = 1e-6
+ABS_TOL = 1e-7
 """
 The absolute tolerance used in all "are these numbers equal" and "is
 this number less than (or equal to) that other number" tests. The CVXOPT
 """
 The absolute tolerance used in all "are these numbers equal" and "is
 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.
+default is ``1e-7``, so we use that. Where we need to be more lenient,
+we'll have to adjust it.
 """
 
 
 """