Reduce tolerances as a workaround for inprecise integration.
Former-commit-id: bff40ebc4b77a7621b609669ac690475ae0c6fd4
This commit is contained in:
parent
9bf2f6a57a
commit
4b2e48f459
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue