Reduce tolerances as a workaround for inprecise integration.

Former-commit-id: bff40ebc4b77a7621b609669ac690475ae0c6fd4
This commit is contained in:
Marek Nečada 2020-03-18 09:34:05 +02:00
parent 9bf2f6a57a
commit 4b2e48f459
1 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,6 @@ typedef struct qpms_tolerance_spec_t {
} qpms_tolerance_spec_t;
/// A rather arbitrary default tolerance.
static const qpms_tolerance_spec_t QPMS_TOLERANCE_DEFAULT = {.atol = 1e-15, .rtol = 1e-8};
static const qpms_tolerance_spec_t QPMS_TOLERANCE_DEFAULT = {.atol = 1e-9, .rtol = 1e-8};
#endif // QPMS_TOLERANCES_H