up vote 64 down vote favorite
14
share [g+] share [fb]

is there an isnan() function?

p.s. I'm in mingw (if that makes a difference)

UPDATE

Thanks for the responses

I had this solved by using isnan() form <math.h>, which doesn't exist in <cmath>, which I was #includeing at first.

link|improve this question

78% accept rate
1  
I not pure you can do it portably. Who says C++ requires IEEE754? – David Heffernan Mar 26 '11 at 8:32
3  
it's unfortunate that people close a question with reference to another that has not yet been correctly answered. that's dumb. – Alf P. Steinbach Mar 26 '11 at 9:23
3  
Well go and answer the other one "correctly" – koan Mar 26 '11 at 10:07
1  
@koan: i tried to answer you but ended up "upvoting" your comment. perhaps it really is great one, in the sense of being nonsense. i already answered this question correctly, and i won't answer the other one. there are still details to flesh out though. it's counter-productive to suppress the flow of such factual info (otoh. i can to some degree understand suppression of discussion on SO). – Alf P. Steinbach Mar 26 '11 at 10:13
1  
@Alf: I think official procedure when a dupe produces novel answers is that the questions should be merged (I'll flag for moderator attention). It's unfortunate that your answer will therefore appear below strongly-upvoted answers on that other question, but it's not as if the answer has changed since that other question was asked. Sometimes SO just upvotes the wrong answer, that's crowd-sourcing for you and it's expected. Your comment on the accepted answer there hopefully will direct people to look further in the case they want to cover non-IEEE floats. – Steve Jessop Mar 26 '11 at 12:15
show 2 more comments
feedback

10 Answers

up vote 59 down vote accepted

According to the IEEE standard, NaN values have the odd property that comparisons involving them are always false. That is, for a float f, f != f will be true only if f is NaN.

link|improve this answer
Isn't it possible that the compiler will optimize this out though? (I don't know because I haven't used C++ for a long time) – DrJokepu Feb 20 '09 at 18:44
2  
The compiler had better not remove this if running in an IEEE mode. Check the documentation for your compiler, of course... – dmckee Feb 20 '09 at 19:21
5  
-1 only works in theory, not in practice: compilers such as g++ (with -fastmath) screw that up. the only general way, until c++0x, is to test for bitpattern. – Alf P. Steinbach Mar 26 '11 at 9:15
3  
@Adam: the documentation does openly state that it's non-conforming, yes. and yes i have encountered that argument before, discussing this at length with Gabriel Dos Reis. it's commonly used to defend the design, in a circular argument (i don't know if you intended to associate to that, but worth knowing about -- it's flame war stuff). your conclusion that x != x is valid without that option does not follow logically. it might be true for a particular version of g++, or not. anyway, you generally have no way to guarantee that fastmath option will not be used. – Alf P. Steinbach Mar 27 '11 at 4:48
1  
@Adaam: code that uses this technique fails when compiled with options where x != x does not hold for NaN, not just for g++. And yes you can test for each compiler (which is an herculean task), and switch to bit-level testing when x != x doesn't work. That means including both x != x and a nore generally valid test in your code (to be used when former fails) -- which is nonsensical. – Alf P. Steinbach Mar 28 '11 at 3:50
show 4 more comments
feedback

There is also a header-only library present in Boost that have neat tools to deal with floating point datatypes

#include <boost/math/special_functions/fpclassify.hpp>

You get the following functions:

template <class T> bool isfinite(T z);
template <class T> bool isinf(T t);
template <class T> bool isnan(T t);
template <class T> bool isnormal(T t);

If you have time then have a look at whole Math toolkit from Boost, it has many useful tools and is growing quickly.

Also when dealing with floating and non-floating points it might be a good idea to look at the Numeric Conversions.

link|improve this answer
3  
Don't use backslashes for include paths. Forward slashes work everywhere (even Windows), backslashes don't. – Bklyn Feb 22 '10 at 17:26
Thanx, copy-pasta error. – Anonymous Feb 22 '10 at 18:52
1  
Thanks! Just what I was looking for. – Dr. Watson Apr 27 '11 at 19:37
feedback

There is an std::isnan if you compiler supports c99 extensions, but I'm not sure if mingw does.

Here is a small function which should work if your compiler doesn't have the standard function:

bool custom_isnan(double var)
{
    volatile double d = var;
    return d != d;
}
link|improve this answer
3  
why not just var != var? – Brian R. Bondy Feb 20 '09 at 18:42
1  
When doing that their is a chance the compiler will optimize the comparison out, always returning true. – CTT Feb 20 '09 at 18:49
11  
No there isn't. A compiler that does that is broken. You might as well say that there's a chance that the standard library isnan returns the wrong result. Technically true, the compiler could be buggy, but in practice, Not Gonna Happen. Same as var != var. It works because that's how IEEE floating point values are defined. – jalf Jan 23 '10 at 16:30
6  
if -ffast-math is set, isnan() will fail to return the correct result for gcc. Of course, this optimization is documented as breaking IEEE semantics... – Matthew Herrmann Jan 24 '11 at 1:06
feedback

There is no isnan() function available in current C++ Standard Library. It was introduced in C99 and defined as a macro not a function. Elements of standard library defined by C99 are not part of current C++ standard ISO/IEC 14882:1998 neither its update ISO/IEC 14882:2003.

In 2005 Technical Report 1 was proposed. The TR1 brings compatibility with C99 to C++. In spite of the fact it has never been officially adopted to become C++ standard, many (GCC 4.0+ or Visual C++ 9.0+ C++ implementations do provide TR1 features, all of them or only some (Visual C++ 9.0 does not provide C99 math functions).

If TR1 is available, then cmath includes C99 elements like isnan(), isfinite(), etc. but they are defined as functions, not macros, usually in std::tr1:: namespace, though many implementations (i.e. GCC 4+ on Linux or in XCode on Mac OS X 10.5+) inject them directly to std::, so std::isnan is well defined.

Moreover, some implementations of C++ still make C99 isnan() macro available for C++ (included through cmath or math.h), what may cause more confusions and developers may assume it's a standard behaviour.

A note about Viusal C++, as mentioned above, it does not provide std::isnan neither std::tr1::isnan, but it provides an extension function defined as _isnan() which has been available since Visual C++ 6.0

On XCode, there is even more fun. As mentioned, GCC 4+ defines std::isnan. For older versions of compiler and library form XCode, it seems (here is relevant discussion), haven't had chance to check myself) two functions are defined, __inline_isnand() on Intel and __isnand() on Power PC.

link|improve this answer
I wish your answer appear at the top of that page... – mezhaka Apr 12 '11 at 16:20
Everybody wants these functions like isNan or isInfinity. Why do the people in charge not simply include in their standards???? - I will try to find out how to get in charge and put my vote in for this. Seriously. – Martin Oct 5 '11 at 9:04
feedback

There are three "official" ways: posix isnan macro, c++0x isnan function template, or visual c++ _isnan function.

Unfortunately it's rather impractical to detect which of those to use.

And unfortunately, there's no reliable way to detect whether you have IEEE 754 representation with NaNs. The standard library offers an official such way (numeric_limits<double>::is_iec...). But in practice compilers such as g++ screw that up.

In theory one could use simply x != x, but compilers such as g++ and visual c++ screw that up.

So in the end, test for the specific NaN bitpatterns, assuming (and hopefully enforcing, at some point!) a particular representation such as IEEE 754.


EDIT: as an example of "compilers such as g++ … screw that up", consider

#include <limits>
#include <assert.h>

void foo( double a, double b )
{
    assert( a != b );
}

int main()
{
    typedef std::numeric_limits<double> Info;
    double const nan1 = Info::quiet_NaN();
    double const nan2 = Info::quiet_NaN();
    foo( nan1, nan2 );
}

Compiling with g++ (TDM-2 mingw32) 4.4.1:

C:\test> type "C:\Program Files\@commands\gnuc.bat"
@rem -finput-charset=windows-1252
@g++ -O -pedantic -std=c++98 -Wall -Wwrite-strings %* -Wno-long-long

C:\test> gnuc x.cpp

C:\test> a && echo works... || echo !failed
works...

C:\test> gnuc x.cpp --fast-math

C:\test> a && echo works... || echo !failed
Assertion failed: a != b, file x.cpp, line 6

This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
!failed

C:\test> _
link|improve this answer
1  
compilers such as g++ and visual c++ screw that up. Really? I've never noticed. Is there an example or link to more info on this? – Inverse Mar 26 '11 at 20:08
@Inverse: I added example. – Alf P. Steinbach Mar 26 '11 at 22:00
2  
@Adam: What you're missing is that the C++ standard doesn't require IEEE representation or math for floats. As far as the man page tells you, gcc -ffast-math is still a conforming C++ implementation (well, assuming it gets numeric_limits::is_iec559 right, it is, although Alf suggests above that it doesn't): C++ code relying on IEEE is not portable C++ and has no right to expect implementations to provide it. – Steve Jessop Mar 26 '11 at 23:52
2  
And Alf's right, quick test on gcc 4.3.4 and is_iec559 is true with -ffast-math. So the problem here is that GCC's docs for -ffast-math only say that it's non-IEEE/ISO for math functions, whereas they should say that it's non-C++, because its implementation of numeric_limits is borked. I would guess that GCC can't always tell at the time that template is defined, whether the eventual backend actually has conforming floats, and so doesn't even try. IIRC there are similar issues in the outstanding bug list for GCC's C99 conformance. – Steve Jessop Mar 27 '11 at 0:05
1  
@Eonil: C++0x still has for example "The value representation of floating-point types is implementation-defined". C and C++ both aim to support implementations on machines with no floating-point hardware, and proper IEEE 754 floats can be quite a bit slower to emulate than reasonably-accurate alternatives. The theory is you can assert is_iec559 if you need IEEE, in practice that doesn't appear to work on GCC. C++0x does have an isnan function, but since GCC doesn't correctly implement is_iec559 now, I guess it won't in C++0x either, and -ffast-math might well break its isnan. – Steve Jessop Mar 27 '11 at 10:40
show 2 more comments
feedback

You can use numeric_limits<float>::quiet_NaN( ) defined in the limits standard library to test with. There's a separate constant defined for double.

#include <iostream>
#include <math.h>
#include <limits>

using namespace std;

int main( )
{
   cout << "The quiet NaN for type float is:  "
        << numeric_limits<float>::quiet_NaN( )
        << endl;

   float f_nan = numeric_limits<float>::quiet_NaN();

   if( isnan(f_nan) )
   {
       cout << "Float was Not a Number: " << f_nan << endl;
   }

   return 0;
}

I don't know if this works on all platforms, as I only tested with g++ on Linux.

link|improve this answer
1  
Watch out, though--there appears to be a bug in numeric_limits in GCC version 3.2.3, since it returns 0.0 for quiet_NaN. Later versions of GCC are okay in my experience. – Nathan Kitchen Apr 30 '09 at 21:12
@Nathan: Good to know. I'm using version 4.3.2, so I'm well out of the woods. – Bill the Lizard Apr 30 '09 at 21:48
3  
This will not work, since NaN's never compare equal to another floating point value, even themselves. Specifically "numeric_limits<float>::quiet_nan() == numeric_limits<float>::quiet_nan()" should always return false. – ReWrite Feb 7 '10 at 19:54
1  
@ReWrite: I don't see how this "will not work" since what I suggested above is a test. – Bill the Lizard Feb 7 '10 at 21:03
feedback

You can use the isnan() function, but you need to include the C math library.

#include <cmath>

As this function is part of C99, it is not available everywhere. If your vendor does not supply the function, you can also define your own variant for compatibility.

#ifndef isnan
inline bool isnan(double x) {
    return x != x;
}
#endif
link|improve this answer
I was using <cmath> and there's no isnan in it! incidentally I found out that there is an isnan in <math.h> – hasen j Feb 20 '09 at 18:41
1  
As I said, this is part of C99. As C99 is not part of any current C++ standard, I provided the alternative. But as it is likely that isnan() will be included in an upcoming C++ standard, I put a #ifndef directive around it. – Raim Feb 21 '09 at 1:31
feedback

The following code uses the definition of NAN (all exponent bits set, at least one fractional bit set) and assumes that sizeof(int) = sizeof(float) = 4. You can look up NAN in Wikipedia for the details.

bool IsNan( float value ) { return ((*(UINT*)&value) & 0x7fffffff) > 0x7f800000; }

link|improve this answer
This only works on little endian. – kralyk Nov 19 '11 at 14:13
feedback

isnan() from math library. See Checking if a double (or float) is nan in C++

link|improve this answer
1  
You forgot to say,that isnan() isn't standard C++ function. – Ashot Martirosyan Mar 26 '11 at 8:46
1  
-1 there is no such function in standard c++. posix requires an isnan macro. – Alf P. Steinbach Mar 26 '11 at 9:21
feedback

I believe that the "C++ way" to do this is to either use Boost or do something like:

#if I_HAVE_TR1
#include <cmath> // defines std::tr1::isnan<T>
#else
#include <limits>
namespace std { namespace tr1 {
template <class T>
inline bool isnan(T val) {
    return ((std::numeric_limits<T>::has_quiet_NaN &&
             (std::numeric_limits<T>::quiet_NaN() == val)) ||
            (std::numeric_limits<T>::has_signaling_NaN &&
             (std::numeric_limits<T>::signaling_NaN() == val));
}
}} // end namespace std::tr1
#endif

or some less readable variant of that. IIRC, TR1 added in all of the math goodness from C99. Unfortunately I can't recall how to properly detect if the compilation environment supports TR1 :(

link|improve this answer
what's the need for all this mess when it's so simple?? check the upvoted answers – hasen j Feb 21 '09 at 0:16
4  
Not to mention that NaN doesn't equal anything, so this will not work. – bk1e Feb 21 '09 at 22:59
2  
And even if it did work, there are many, many, many values of NaN. The only right answer is to use the NaN!=NaN guarantee explained in most of the other answers. – RBerteig Jan 20 '11 at 8:42
feedback

Your Answer

 
or
required, but never shown

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