QPMS
Electromagnetic multiple scattering library and toolkit.
tolerances.h
Go to the documentation of this file.
1 
2 #ifndef QPMS_TOLERANCES_H
3 #define QPMS_TOLERANCES_H
4 
5 // TODO DOC
6 
7 typedef struct qpms_tolerance_spec_t {
8  double atol;
9  double rtol;
11 
13 static const qpms_tolerance_spec_t QPMS_TOLERANCE_DEFAULT = {.atol = 1e-9, .rtol = 1e-8};
14 
15 #endif // QPMS_TOLERANCES_H
Definition: tolerances.h:7
static const qpms_tolerance_spec_t QPMS_TOLERANCE_DEFAULT
A rather arbitrary default tolerance.
Definition: tolerances.h:13