22 lines
414 B
C
22 lines
414 B
C
/*! \file tolerances.h */
|
|
#ifndef QPMS_TOLERANCES_H
|
|
#define QPMS_TOLERANCES_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// TODO DOC
|
|
|
|
typedef struct qpms_tolerance_spec_t {
|
|
double atol;
|
|
double rtol;
|
|
} qpms_tolerance_spec_t;
|
|
|
|
/// A rather arbitrary default tolerance.
|
|
static const qpms_tolerance_spec_t QPMS_TOLERANCE_DEFAULT = {.atol = 1e-9, .rtol = 1e-8};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // QPMS_TOLERANCES_H
|