| 29 | |
| 30 | template <typename T> |
| 31 | static void fixNANs(T & x) |
| 32 | { |
| 33 | if (std::isnan(T(x)) || std::isinf(x)) |
| 34 | x = T(0); |
| 35 | } |
| 36 | |
| 37 | |
| 38 | static char const * const s_distance_models[lab::DistanceEffect::ModelType::_Count + 1] = { |
no outgoing calls
no test coverage detected