18 bool isnan(
float a) {
return a != a; }
19 bool isnan(
double a) {
return a != a; }
helper functions for EinsplineSetBuilder
bool isfinite(float a)
return true if the value is finite.
bool isinf(float a)
return true if the value is Inf.
bool isnan(float a)
return true if the value is NaN.