I can only assume this is a bug. The first assert passes while the second fails:
double sum_1 = 4.0 + 6.3;
assert(sum_1 == 4.0 + 6.3);
double t1 = 4.0, t2 = 6.3;
double sum_2 = t1 + t2;
assert(sum_2 == t1 + t2);
If not a bug, why?
|
|
|
|
|
|
|
This is something that has bitten me, too. Yes, floating point numbers should never be compared for equality because of rounding error, and you probably knew that. But in this case, you're computing Here's what's probably going on. I'll bet you're running this on an x86 CPU, correct? The x86 FPU uses 80 bits for its internal registers, but values in memory are stored as 64-bit doubles. So Edit So why does the first test pass? In this case, the compiler probably evaluates Second Edit Here's the assembly code generated for the second part of the code (gcc, x86), with comments -- pretty much follows the scenario outlined above:
Interesting side note: This was compiled without optimization. When it's compiled with |
||||||||||
|
|
|
You are comparing floating point numbers. Don't do that, floating point numbers have inherent precision error in some circumstances. Instead, take the absolute value of the difference of the two values and assert that the value is less than some small number (epsilon).
This has nothing to do with the compiler and everything to do with the way floating point numbers are implemented. here is the IEEE spec: http://www.eecs.berkeley.edu/~wkahan/ieee754status/IEEE754.PDF |
||||||||||||
|
|
|
I've duplicated your problem on my Intel Core 2 Duo, and I looked at the assembly code. Here's what's happening: when your compiler evaluates
When it stores into
Then the What's really irritating is that if you compiler with P.S. When I say that
resolves to
and
resolves to
Welcome to the wonderful world of floating point! |
||
|
|
|
|
When comparing floating point numbers for closeness you usually want to measure their relative difference, which is defined as
For example,
The idea is to measure the number of leading significant digits the numbers have in common; if you take the -log10 of 0.000195787019 you get 3.70821611, which is about the number of leading base 10 digits all the examples have in common. If you need to determine if two floating point numbers are equal you should do something like
where machine epsilon is the smallest number that can be held in the mantissa of the floating point hardware being used. Most computer languages have a function call to get this value. error_factor should be based on the number of significant digits you think will be consumed by rounding errors (and others) in the calculations of the numbers x and y. For example, if I knew that x and y were the result of about 1000 summations and did not know any bounds on the numbers being summed, I would set error_factor to about 100. Tried to add these as links but couldn't since this is my first post:
|
||
|
|
|
|
It may be that in one of the cases, you end up comparing a 64-bit double to an 80-bit internal register. It may be enlightening to look at the assembly instructions GCC emits for the two cases... |
||
|
|
|
|
You can look also at: |
||
|
|
|
|
Comparisons of double precision numbers are inherently inaccurate. For instance, you can often find
You will need to use a delta to give a tolerance for your comparisons, rather than an exact value. |
||
|
|
|
|
This "problem" can be "fixed" by using these options: -msse2 -mfpmath=sse as explained on this page: http://www.network-theory.co.uk/docs/gccintro/gccintro%5F70.html Once I used these options, both asserts passed. |
||
|
|