1 /*! \file tolerances.h */
2 #ifndef QPMS_TOLERANCES_H
3 #define QPMS_TOLERANCES_H
7 typedef struct qpms_tolerance_spec_t
{
10 } qpms_tolerance_spec_t
;
12 /// A rather arbitrary default tolerance.
13 static const qpms_tolerance_spec_t QPMS_TOLERANCE_DEFAULT
= {.atol
= 1e-9, .rtol
= 1e-8};
15 #endif // QPMS_TOLERANCES_H