mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
precision.hpp
1
2
3#ifndef mx_precision_hpp
4#define mx_precision_hpp
5
6#include <type_traits>
7
8#ifdef MX_INCLUDE_BOOST
9#include <boost/math/tools/precision.hpp>
10#endif
11
12namespace mx
13{
14namespace math
15{
16namespace func
17{
18
19/// Get the sqrt(epsilon) where epsilon is machine precision
20/** Wrapper for boost function
21 *
22 * \todo this isn't, but should be constexpr -- need constr sqrt.
23 *
24 * \ingroup gen_math_precision
25 */
26template <typename T>
28{
29#ifdef MX_INCLUDE_BOOST
30 return boost::math::tools::root_epsilon<T>();
31#else
32 static_assert(
33 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
34 "root_epsilon<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
35 return 0;
36#endif
37}
38
39template <>
40float root_epsilon<float>();
41
42template <>
43double root_epsilon<double>();
44
45} // namespace func
46} // namespace math
47} // namespace mx
48
49#endif // mx_precision_hpp
T root_epsilon()
Get the sqrt(epsilon) where epsilon is machine precision.
Definition precision.hpp:27
The mxlib c++ namespace.
Definition mxError.hpp:106