2020-08-20 00:09:06 -04:00

12 lines
200 B
C

#include <stdbool.h>
#include <math.h>
#include "utilities.h"
inline bool double_equal(double a, double b)
{
//ghetto - but likely close enough, we'll see
return (fabs(a - b) < EPSILON);
}