X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=dunshire%2Foptions.py;h=2a57e270e6763ba087d361bb0d81e7f57bd0d5d4;hb=90a06c2530e34b48d29f8a154a529072dbe2abea;hp=c6e5c4cb079edfc7149ee8179137fb7f61975e84;hpb=465df68194eff71cadf77281a3a612111d6b0785;p=dunshire.git diff --git a/dunshire/options.py b/dunshire/options.py index c6e5c4c..2a57e27 100644 --- a/dunshire/options.py +++ b/dunshire/options.py @@ -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 -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. """