1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-19 21:25:36 +01:00

added NaN numbers

This commit is contained in:
Antonin Portelli 2019-12-12 18:04:57 +00:00
parent 0ca4e0ef17
commit 21812e1fd7

View File

@ -75,6 +75,7 @@ namespace MATH_NAMESPACE
constexpr double pi = 3.1415926535897932384626433832795028841970;
constexpr double e = 2.7182818284590452353602874713526624977572;
constexpr double inf = std::numeric_limits<double>::infinity();
constexpr double nan = std::numeric_limits<double>::quiet_NaN();
}