
Patrick B. answered 06/29/19
Math and computer tutor/teacher
The best thing to do is it find the MACHINE EPSILON, that is
the smallest number you can find such that
1 + MACH_EPS is NOT equal to 1
So there is a floating point MACH_EPS=0.00000.....000001 such that 1+ x = 1;
that is, adding it to ONE has no effect.
Once you find the MACHINE EPSILON for that particular system and platform, you can better troubleshoot
from there