26 #include "wombat/port.h"
30 #if defined(__cplusplus)
50 #define MAMA_QUANTITY_EPSILON ((mama_f64_t)0.00000000001)
55 #define mama_isQuantityNone(q) \
56 ((q) < MAMA_QUANTITY_EPSILON)
61 #define mama_isQuantityEqual(lhs, rhs) \
62 ((lhs) < (rhs) ? (rhs) - (lhs) < MAMA_QUANTITY_EPSILON : \
63 (lhs) - (rhs) < MAMA_QUANTITY_EPSILON)
129 #if defined(__cplusplus)