vote up 11 vote down star
8

What would be the most efficient way to compare two doubles or two floats (single precision)?

Simply doing this is not correct:

bool CompareDoubles1 (double A, double B)

{

return A == B;

}

But something like:

bool CompareDoubles2 (double A, double B)

{

diff = A - B;

return (diff < EPSILON) && (-diff > EPSILON);

}

Seems to waste processing.

Does anyone knows a smarter float comparer?

flag
Any chance of you accepting an answer? – OJ Sep 21 '08 at 10:01

18 Answers

vote up 1 vote down

Comparing floating point numbers for depends on the context. Since even changing the order of operations can produce different results, it is important to know how "equal" you want the numbers to be.

Comparing floating point numbers by Bruce Dawson is a good place to start when looking at floating point comparison.

The following definitions are from The art of computer programming by Knuth:

bool approximatelyEqual(float a, float b, float epsilon)
{
    return fabs(a - b) <= ( (fabs(a) < fabs(b) ? fabs(b) : fabs(a)) * epsilon);
}

bool essentiallyEqual(float a, float b, float epsilon)
{
    return fabs(a - b) <= ( (fabs(a) > fabs(b) ? fabs(b) : fabs(a)) * epsilon);
}

bool definitelyGreaterThan(float a, float b, float epsilon)
{
    return (a - b) > ( (fabs(a) < fabs(b) ? fabs(b) : fabs(a)) * epsilon);
}

bool definitelyLessThan(float a, float b, float epsilon)
{
    return (b - a) > ( (fabs(a) < fabs(b) ? fabs(b) : fabs(a)) * epsilon);
}

Of course, choosing epsilon depends on the context, and determines how equal you want the numbers to be.

Another method of comparing floating point numbers is to look at the ULP (units in last place) of the numbers. While not dealing specifically with comparisons, the paper What every computer scientist should know about floating point numbers is a good resource for understanding how floating point works and what the pitfalls are, including what ULP is.

link|flag
vote up 0 vote down

Here it is the way implemented in Boost Test Library: http://www.boost.org/doc/libs/1_36_0/libs/test/doc/html/utf/testing-tools/floating_point_comparison.html

link|flag
vote up 5 vote down

Be extremely careful using any of the suggestions above. It all depends on context.

I have spent a long time tracing a bugs in a system that presumed a=b if |a-b|<epsion. The underlying problems were:

  1. The implicit presumption in an algorithm that if a=b and b=c then a=c.

  2. Using the same epsilon for lines measured in inches and lines measured in mils (.001 inch). That is a=b but 1000a!=1000b. (This is why AlmostEqual2sComplement asks for the epsilon or max ULPS).

  3. The use of the same epsilon for both the cosine of angles and the length of lines!

  4. Using such a compare function to sort items in a collection. (In this case using the builtin C++ operator == for doubles produced correct results.)

Like I said: it all depends on context and the expected size of a and b.

BTW, std::numeric_limits::epsilon() is the "machine epsilon". It is the smallest positive value e such that 1+e!=1. I guess that is could be used in the compare function but only if the expected values are less than 1.

Also, if you basically have int arithmetic in doubles (here we use doubles to hold int values in certain cases) your arithmetic will be correct. For example 4.0/2.0 will be the same as 1.0+1.0. This is as long as you do not do things that result in fractions (4.0/3.0) or do not go outside of the size of an int.

link|flag
Interesting points. +1. – paercebal Oct 12 '08 at 20:19
vote up 4 vote down

The portable way to get epsilon in C++ is

#include <limits>
std::numeric_limits<double>::epsilon()

Then the comparison function becomes

#include <cmath>
#include <limits>

bool AreSame(double a, double b) {
    return fabs(a - b) < std::numeric_limits<double>::epsilon();
}
link|flag
vote up 3 vote down

`return fabs(a - b) < EPSILON;

This is fine if:

  • the order of magnitude of your inputs don't change much
  • very small numbers of opposite signs can be treated as equal

But otherwise it'll lead you into trouble. Double precision numbers have a resolution of about 16 decimal places. If the two numbers you are comparing are larger in magnitude than EPSILON*1.0E16, then you might as well be saying:

return a==b;

I'll examine a different approach that assumes you need to worry about the first issue and assume the second is fine your application. A solution would be something like:

#define VERYSMALL  (1.0E-150)
#define EPSILON    (1.0E-8)
bool AreSame(double a, double b)
{
    double absDiff = fabs(a - b);
    if (absDiff < VERYSMALL)
    {
        return true;
    }

    double maxAbs  = max(fabs(a) - fabs(b));
    return (absDiff/maxAbs) < EPSILON;
}

This is expensive computationally, but it is sometimes what is called for. This is what we have to do at my company because we deal with an engineering library and inputs can vary by a few dozen orders of magnitude.

Anyway, the point is this (and applies to practically every programming problem): Evaluate what your needs are, then come up with a solution to address your needs -- don't assume the easy answer will address your needs. If after your evaluation you find that fabs(a-b) < EPSILON will suffice, perfect -- use it! But be aware of its shortcomings and other possible solutions too.

link|flag
vote up 1 vote down

General-purpose comparison of floating-point numbers is generally meaningless. How to compare really depends on a problem at hand. In many problems, numbers are sufficiently discretized to allow comparing them within a given tolerance. Unfortunately, there are just as many problems, where such trick doesn't really work. For one example, consider working with a Heaviside (step) function of a number in question (digital stock options come to mind) when your observations are very close to the barrier. Performing tolerance-based comparison wouldn't do much good, as it would effectively shift the issue from the original barrier to two new ones. Again, there is no general-purpose solution for such problems and the particular solution might require going as far as changing the numerical method in order to achieve stability.

link|flag
vote up 0 vote down

It depends on how precise you want the comparison to be. If you want to compare for exactly the same number, then just go with ==. (You almost never want to do this unless you actually want exactly the same number.) On any decent platform you can also do the following:

diff= a - b; return fabs(diff)<EPSILON;

as fabs tends to be pretty fast. By pretty fast I mean it is basically a bitwise AND, so it better be fast.

And integer tricks for comparing doubles and floats are nice but tend to make it more difficult for the various CPU pipelines to handle effectively. And it's definitely not faster on certain in-order architectures these days due to using the stack as a temporary storage area for values that are being used frequently. (Load-hit-store for those who care.)

MSN

link|flag
vote up 0 vote down

@Andrew

Good points !

link|flag
vote up 6 vote down

For a more in depth approach read Comparing floating point numbers. Here is the code snippet from that link:

// Usable AlmostEqual function    
bool AlmostEqual2sComplement(float A, float B, int maxUlps)    
{    
    // Make sure maxUlps is non-negative and small enough that the    
    // default NAN won't compare as equal to anything.    
    assert(maxUlps > 0 && maxUlps < 4 * 1024 * 1024);    
    int aInt = *(int*)&A;    
    // Make aInt lexicographically ordered as a twos-complement int    
    if (aInt < 0)    
        aInt = 0x80000000 - aInt;    
    // Make bInt lexicographically ordered as a twos-complement int    
    int bInt = *(int*)&B;    
    if (bInt < 0)    
        bInt = 0x80000000 - bInt;    
    int intDiff = abs(aInt - bInt);    
    if (intDiff <= maxUlps)    
        return true;    
    return false;    
}
link|flag
vote up 0 vote down

would it be more efficient to add ... in the beginning of the function?

<invoke Knuth>Premature optimization is the root of all evil.</invoke Knuth> Just go with abs(a-b) < EPS as noted above, it's clear and easy to understand.

link|flag
vote up 2 vote down

@Ebel

Doing an absolute comparison first is largely a waste of time. For one thing unless your numbers were generated from exactly the same sources, using exactly the same operations, and in exactly the same order, then they are unlikely to be absolutely equal regardless of machine architecture.

For another branching on many chips, especially PowerPC chips as found in the 360/PS3, can be more expensive than doing the actual subtraction / abs.

link|flag
vote up 0 vote down

to John:

Yes, but as == compares the bits one by one. assuming lots of times the two doubles are equal by the bits (as they were computed on same machine doing the same math), it might save time to check for absolute (bitwise) equality before computing for diff ?

link|flag
vote up 0 vote down

@OJ

The tags specify C++

link|flag
vote up 4 vote down

The code you wrote is bugged :

return (diff < EPSILON) && (-diff > EPSILON);

The correct code would be :

return (diff < EPSILON) && (diff > -EPSILON);

(...and yes this is different)

I wonder if fabs wouldn't make you lose lazy evaluation in some case. I would say it depends on the compiler. You might want to try both. If they are equivalent in average, take the implementation with fabs.

If you have some info on which of the two float is more likely to be bigger than then other, you can play on the order of the comparison to take better advantage of the lazy evaluation.

Finally you might get better result by inlining this function. Not likely to improve much though...

Edit: OJ, thanks for correcting your code. I erased my comment accordingly

link|flag
vote up 2 vote down

@ebel gil

Comparing floating point numbers using == is not reliable. That's why Alex made the function.

link|flag
vote up 0 vote down

would it be more efficient to add

if (d1 == d2) return true;

in the beginning of the function ?

link|flag
note: this is for the case inwhich the bits are identical ... – gil Nov 8 at 9:15
vote up 17 vote down

The comparison with an epsilon value is what most people do (even in game programming).

You should change your implementation a little though:

bool AreSame(double a, double b)
{
    return fabs(a - b) < EPSILON;
}

Cheers!


Edit: Christer has added a stack of great info on this topic on a recent blog post. Enjoy.

link|flag
This has been marked as accepted, then reverted, multiple times! Wtf? :) – OJ Dec 9 '08 at 11:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.