Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aegean-Homines/60d457a6065738338a21aef4c5482a12 to your computer and use it in GitHub Desktop.
Save Aegean-Homines/60d457a6065738338a21aef4c5482a12 to your computer and use it in GitHub Desktop.
isnan function taken from isocpp faq website
inline bool my_isnan(double x)
{
return x != x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment