12 #ifndef __SYS_MATHCBRT_H_INCLUDED__
13 #define __SYS_MATHCBRT_H_INCLUDED__
18 #if defined(SYS_MATHLIB_COREMATH)
37 #else // !defined(SYS_MATHLIB_COREMATH)
39 #include <hboost/math/special_functions/cbrt.hpp>
40 #include <hboost/math/policies/policy.hpp>
45 namespace SYS_MathCBRT
47 typedef hboost::math::policies::policy<
48 hboost::math::policies::domain_error<hboost::math::policies::ignore_error>,
49 hboost::math::policies::pole_error<hboost::math::policies::ignore_error>,
50 hboost::math::policies::overflow_error<hboost::math::policies::ignore_error>,
51 hboost::math::policies::underflow_error<hboost::math::policies::ignore_error>,
52 hboost::math::policies::denorm_error<hboost::math::policies::ignore_error>,
53 hboost::math::policies::rounding_error<hboost::math::policies::ignore_error>,
54 hboost::math::policies::evaluation_error<hboost::math::policies::ignore_error>,
55 hboost::math::policies::indeterminate_result_error<hboost::math::policies::ignore_error>
72 #endif // __SYS_MATHCBRT_H_INCLUDED__