uint8_t GEN_compare_doubles(double a, double b, double epsilon)
Returns 1 if a and b are approximately equal to each other (within epsilon), 0 otherwise.
Definition number_comparisons.c:6
uint8_t GEN_compare_floats(float a, float b, float epsilon)
Returns 1 if a and b are approximately equal to each other (within epsilon), 0 otherwise.
Definition number_comparisons.c:13