Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
I not pure you can do it portably. Who says C++ requires IEEE754? – David Heffernan Mar 26 '11 at 8:32
4  
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). – Cheers and hth. - Alf Mar 26 '11 at 10:13
Couldn't you post a comment on the other question that links to your answer here ? – koan Mar 26 '11 at 10:49
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 1 more comment

11 Answers

up vote 113 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.

Note that, as some comments below have pointed out, not all compilers respect this when optimizing code.

For any compiler which claims to use IEEE floating point, this trick should work. But I can't guarantee that it will work in practice. Check with your compiler, if in doubt.

share|improve this answer
3  
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
17  
-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. – Cheers and hth. - Alf Mar 26 '11 at 9:15
5  
@Alf: The documentation for the -ffast-math option explicitly says that it can result in incorrect output for programs which depend on an exact implementation if IEEE or ISO rules/specifications for math functions. Without that option enabled, using x != x is a perfectly valid and portable way of testing for NaN. – Adam Rosenfield Mar 26 '11 at 22:37
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. – Cheers and hth. - Alf 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. – Cheers and hth. - Alf Mar 28 '11 at 3:50
show 4 more comments

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.

share|improve this answer
1  
I wish your answer appear at the top of that page... – mezhaka Apr 12 '11 at 16:20
3  
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

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.

share|improve this answer
8  
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
it was added in Boost 1.35 (I've just found my program doesn't compile on old linux distro). – marcin May 20 '12 at 20:38
if you compile with the option --fast-math then this function will not work as expected. – Gaetano Mendola Nov 16 '12 at 10:59

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;
}
share|improve this answer
4  
why not just var != var? – Brian R. Bondy Feb 20 '09 at 18:42
3  
When doing that their is a chance the compiler will optimize the comparison out, always returning true. – CTT Feb 20 '09 at 18:49
17  
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
16  
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

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> _
share|improve this answer
5  
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. – Cheers and hth. - Alf Mar 26 '11 at 22:00
3  
@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

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.

share|improve this answer
2  
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

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
share|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

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; }

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

A possible solution that would not depend on the specific IEEE representation for NaN used would be the following:

template<class T>
bool isnan( T f ) {
    T _nan =  (T)0.0/(T)0.0;
    return 0 == memcmp( (void*)&f, (void*)&_nan, sizeof(T) );
}
share|improve this answer

As for me the solution could be a macro to make it explicitly inline and thus fast enough. It also works for any float type. It bases on the fact that the only case when a value is not equals itself is when the value is not a number.

#ifndef isnan
  #define isnan(a) (a != a)
#endif
share|improve this answer

After reading the other answers I wanted something that would pass through the floating-point comparison warning and would not break under fast math. The following code appears to work:

/*
  Portable warning-free NaN test:
    * Does not emit warning with -Wfloat-equal (does not use float comparisons)
    * Works with -O3 -ffast-math (floating-point optimization)
    * Only call to standard library is memset and memcmp via <cstring>
    * Works for IEEE 754 compliant floating-point representations
    * Also works for extended precision long double
*/

#include <cstring>
template <class T> bool isNaN(T x)
{
  /*Initialize all bits including those used for alignment to zero. This sets
  all the values to positive zero but does not clue fast math optimizations as
  to the value of the variables.*/
  T z[4];
  memset(z, 0, sizeof(z));
  z[1] = -z[0];
  z[2] = x;
  z[3] = z[0] / z[2];

  /*Rationale for following test:
    * x is 0 or -0                                --> z[2] = 0, z[3] = NaN
    * x is a negative or positive number          --> z[3] = 0
    * x is a negative or positive denormal number --> z[3] = 0
    * x is negative or positive infinity          --> z[3] = 0
      (IEEE 754 guarantees that 0 / inf is zero)
    * x is a NaN                                  --> z[3] = NaN != 0.
  */

  //Do a bitwise comparison test for positive and negative zero.
  bool z2IsZero = memcmp(&z[2], &z[0], sizeof(T)) == 0 ||
                  memcmp(&z[2], &z[1], sizeof(T)) == 0;

  bool z3IsZero = memcmp(&z[3], &z[0], sizeof(T)) == 0 ||
                  memcmp(&z[3], &z[1], sizeof(T)) == 0; 

  //If the input is bitwise zero or negative zero, then it is not NaN.
  return !z2IsZero && !z3IsZero;
}

//NaN test suite
#include <iostream>

/*If printNaN is true then only expressions that are detected as NaN print and
vice versa.*/
template <class T> void test(bool printNaN)
{
  T v[10] = {-0.0, 0.0, -1.0, 1.0,
    std::numeric_limits<T>::infinity(),
    -std::numeric_limits<T>::infinity(),
    std::numeric_limits<T>::denorm_min(),
    -std::numeric_limits<T>::denorm_min(),
    std::numeric_limits<T>::quiet_NaN(),
    std::numeric_limits<T>::signaling_NaN()};
  for(int i = 0; i < 10; i++)
  {
    for(int j = 0; j < 10; j++)
    {
      if(isNaN(v[i] + v[j]) == printNaN)
        std::cout << v[i] << "+" << v[j] << " = " << v[i] + v[j] << std::endl;
      if(isNaN(v[i] - v[j]) == printNaN)
        std::cout << v[i] << "-" << v[j] << " = " << v[i] - v[j] << std::endl;
      if(isNaN(v[i] * v[j]) == printNaN)
        std::cout << v[i] << "*" << v[j] << " = " << v[i] * v[j] << std::endl;
      if(isNaN(v[i] / v[j]) == printNaN)
        std::cout << v[i] << "/" << v[j] << " = " << v[i] / v[j] << std::endl;
    }
  }
}

//Test each floating-point type.
int main()
{
  std::cout << "NaNs:" << std::endl;
  test<float>(true);
  test<double>(true);
  test<long double>(true);
  std::cout << std::endl << "Not NaNs:" << std::endl;
  test<float>(false);
  test<double>(false);
  test<long double>(false);
  return 0;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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