I know it's not "possible" to compare two real, but is it true for real which have denominator power of 2
Is equality of this king always return true
if( 3/4. == 6/8. ) {}
|
I know it's not "possible" to compare two real, but is it true for real which have denominator power of 2 Is equality of this king always return true
| |||||||||||||
feedback
|
|
This kind of expression should always evaluate to
| |||||||||||||
feedback
|
|
I can't quote anything that says it's guaranteed, but logically it should work because all IEE754 floating point numbers are represented as M * 2 ^ E, where M and E are both integers (and may be negative). Hence Furthermore, given:
We get:
Which shows that both expressions have been reduced (by the compiler) to the same constant value. | |||
|
feedback
|
|
There is no requirement that C++ implementations use IEEE 754 floating point (or similar). But if yours does, this should work fine. | |||
|
feedback
|
|
In general, whether floating-point equality comparison works depends not on the values, but how they were obtained. e.g.
is likely to work well despite the inexact value, while:
is likely to fail even though both sides of the inequality can be expressed as a simple rational number where the denominator is a power of 2. | |||||||
feedback
|