Compares two numbers to see if they're almost the same
bool fuzzy(num a,num b, [double tolerance = 0.00001]) { return ((a < (b + tolerance)) && (a > (b - tolerance))); }