// Copyright John Maddock 2007. // Copyright Matt Borland 2021. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_MATH_POLICY_HPP #define BOOST_MATH_POLICY_HPP #include #include #include #include #include #include #include namespace mp = boost::math::tools::meta_programming; namespace boost{ namespace math{ namespace tools{ template constexpr int digits(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T)) noexcept; template constexpr T epsilon(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T)) noexcept(std::is_floating_point::value); } namespace policies{ // // Define macros for our default policies, if they're not defined already: // // Special cases for exceptions disabled first: // #ifdef BOOST_NO_EXCEPTIONS # ifndef BOOST_MATH_DOMAIN_ERROR_POLICY # define BOOST_MATH_DOMAIN_ERROR_POLICY errno_on_error # endif # ifndef BOOST_MATH_POLE_ERROR_POLICY # define BOOST_MATH_POLE_ERROR_POLICY errno_on_error # endif # ifndef BOOST_MATH_OVERFLOW_ERROR_POLICY # define BOOST_MATH_OVERFLOW_ERROR_POLICY errno_on_error # endif # ifndef BOOST_MATH_EVALUATION_ERROR_POLICY # define BOOST_MATH_EVALUATION_ERROR_POLICY errno_on_error # endif # ifndef BOOST_MATH_ROUNDING_ERROR_POLICY # define BOOST_MATH_ROUNDING_ERROR_POLICY errno_on_error # endif #endif // // Then the regular cases: // #ifndef BOOST_MATH_DOMAIN_ERROR_POLICY #define BOOST_MATH_DOMAIN_ERROR_POLICY throw_on_error #endif #ifndef BOOST_MATH_POLE_ERROR_POLICY #define BOOST_MATH_POLE_ERROR_POLICY throw_on_error #endif #ifndef BOOST_MATH_OVERFLOW_ERROR_POLICY #define BOOST_MATH_OVERFLOW_ERROR_POLICY throw_on_error #endif #ifndef BOOST_MATH_EVALUATION_ERROR_POLICY #define BOOST_MATH_EVALUATION_ERROR_POLICY throw_on_error #endif #ifndef BOOST_MATH_ROUNDING_ERROR_POLICY #define BOOST_MATH_ROUNDING_ERROR_POLICY throw_on_error #endif #ifndef BOOST_MATH_UNDERFLOW_ERROR_POLICY #define BOOST_MATH_UNDERFLOW_ERROR_POLICY ignore_error #endif #ifndef BOOST_MATH_DENORM_ERROR_POLICY #define BOOST_MATH_DENORM_ERROR_POLICY ignore_error #endif #ifndef BOOST_MATH_INDETERMINATE_RESULT_ERROR_POLICY #define BOOST_MATH_INDETERMINATE_RESULT_ERROR_POLICY ignore_error #endif #ifndef BOOST_MATH_DIGITS10_POLICY #define BOOST_MATH_DIGITS10_POLICY 0 #endif #ifndef BOOST_MATH_PROMOTE_FLOAT_POLICY #define BOOST_MATH_PROMOTE_FLOAT_POLICY true #endif #ifndef BOOST_MATH_PROMOTE_DOUBLE_POLICY #ifdef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS #define BOOST_MATH_PROMOTE_DOUBLE_POLICY false #else #define BOOST_MATH_PROMOTE_DOUBLE_POLICY true #endif #endif #ifndef BOOST_MATH_DISCRETE_QUANTILE_POLICY #define BOOST_MATH_DISCRETE_QUANTILE_POLICY integer_round_outwards #endif #ifndef BOOST_MATH_ASSERT_UNDEFINED_POLICY #define BOOST_MATH_ASSERT_UNDEFINED_POLICY true #endif #ifndef BOOST_MATH_MAX_SERIES_ITERATION_POLICY #define BOOST_MATH_MAX_SERIES_ITERATION_POLICY 1000000 #endif #ifndef BOOST_MATH_MAX_ROOT_ITERATION_POLICY #define BOOST_MATH_MAX_ROOT_ITERATION_POLICY 200 #endif #define BOOST_MATH_META_INT(Type, name, Default) \ template \ class name : public std::integral_constant{}; \ \ namespace detail{ \ template \ char test_is_valid_arg(const name* = nullptr); \ char test_is_default_arg(const name* = nullptr); \ \ template \ class is_##name##_imp \ { \ private: \ template \ static char test(const name* = nullptr); \ static double test(...); \ public: \ static constexpr bool value = sizeof(test(static_cast(0))) == sizeof(char); \ }; \ } \ \ template \ class is_##name \ { \ public: \ static constexpr bool value = boost::math::policies::detail::is_##name##_imp::value; \ using type = std::integral_constant; \ }; #define BOOST_MATH_META_BOOL(name, Default) \ template \ class name : public std::integral_constant{}; \ \ namespace detail{ \ template \ char test_is_valid_arg(const name* = nullptr); \ char test_is_default_arg(const name* = nullptr); \ \ template \ class is_##name##_imp \ { \ private: \ template \ static char test(const name* = nullptr); \ static double test(...); \ public: \ static constexpr bool value = sizeof(test(static_cast(0))) == sizeof(char); \ }; \ } \ \ template \ class is_##name \ { \ public: \ static constexpr bool value = boost::math::policies::detail::is_##name##_imp::value; \ using type = std::integral_constant; \ }; // // Begin by defining policy types for error handling: // enum error_policy_type { throw_on_error = 0, errno_on_error = 1, ignore_error = 2, user_error = 3 }; BOOST_MATH_META_INT(error_policy_type, domain_error, BOOST_MATH_DOMAIN_ERROR_POLICY) BOOST_MATH_META_INT(error_policy_type, pole_error, BOOST_MATH_POLE_ERROR_POLICY) BOOST_MATH_META_INT(error_policy_type, overflow_error, BOOST_MATH_OVERFLOW_ERROR_POLICY) BOOST_MATH_META_INT(error_policy_type, underflow_error, BOOST_MATH_UNDERFLOW_ERROR_POLICY) BOOST_MATH_META_INT(error_policy_type, denorm_error, BOOST_MATH_DENORM_ERROR_POLICY) BOOST_MATH_META_INT(error_policy_type, evaluation_error, BOOST_MATH_EVALUATION_ERROR_POLICY) BOOST_MATH_META_INT(error_policy_type, rounding_error, BOOST_MATH_ROUNDING_ERROR_POLICY) BOOST_MATH_META_INT(error_policy_type, indeterminate_result_error, BOOST_MATH_INDETERMINATE_RESULT_ERROR_POLICY) // // Policy types for internal promotion: // BOOST_MATH_META_BOOL(promote_float, BOOST_MATH_PROMOTE_FLOAT_POLICY) BOOST_MATH_META_BOOL(promote_double, BOOST_MATH_PROMOTE_DOUBLE_POLICY) BOOST_MATH_META_BOOL(assert_undefined, BOOST_MATH_ASSERT_UNDEFINED_POLICY) // // Policy types for discrete quantiles: // enum discrete_quantile_policy_type { real, integer_round_outwards, integer_round_inwards, integer_round_down, integer_round_up, integer_round_nearest }; BOOST_MATH_META_INT(discrete_quantile_policy_type, discrete_quantile, BOOST_MATH_DISCRETE_QUANTILE_POLICY) // // Precision: // BOOST_MATH_META_INT(int, digits10, BOOST_MATH_DIGITS10_POLICY) BOOST_MATH_META_INT(int, digits2, 0) // // Iterations: // BOOST_MATH_META_INT(unsigned long, max_series_iterations, BOOST_MATH_MAX_SERIES_ITERATION_POLICY) BOOST_MATH_META_INT(unsigned long, max_root_iterations, BOOST_MATH_MAX_ROOT_ITERATION_POLICY) // // Define the names for each possible policy: // #define BOOST_MATH_PARAMETER(name)\ BOOST_PARAMETER_TEMPLATE_KEYWORD(name##_name)\ BOOST_PARAMETER_NAME(name##_name) struct default_policy{}; namespace detail{ // // Trait to work out bits precision from digits10 and digits2: // template struct precision { // // Now work out the precision: // using digits2_type = typename std::conditional< (Digits10::value == 0), digits2<0>, digits2<((Digits10::value + 1) * 1000L) / 301L> >::type; public: #ifdef BOOST_BORLANDC using type = typename std::conditional< (Digits2::value > ::boost::math::policies::detail::precision::digits2_type::value), Digits2, digits2_type>::type; #else using type = typename std::conditional< (Digits2::value > digits2_type::value), Digits2, digits2_type>::type; #endif }; double test_is_valid_arg(...); double test_is_default_arg(...); char test_is_valid_arg(const default_policy*); char test_is_default_arg(const default_policy*); template class is_valid_policy_imp { public: static constexpr bool value = sizeof(boost::math::policies::detail::test_is_valid_arg(static_cast(0))) == sizeof(char); }; template class is_valid_policy { public: static constexpr bool value = boost::math::policies::detail::is_valid_policy_imp::value; }; template class is_default_policy_imp { public: static constexpr bool value = sizeof(boost::math::policies::detail::test_is_default_arg(static_cast(0))) == sizeof(char); }; template class is_default_policy { public: static constexpr bool value = boost::math::policies::detail::is_default_policy_imp::value; using type = std::integral_constant; template struct apply { using type = is_default_policy; }; }; template struct append_N { using type = typename append_N, T, N-1>::type; }; template struct append_N { using type = Seq; }; // // Traits class to work out what template parameters our default // policy<> class will have when modified for forwarding: // template struct default_args { typedef promote_float arg1; typedef promote_double arg2; }; template <> struct default_args { typedef default_policy arg1; typedef default_policy arg2; }; template <> struct default_args { typedef promote_float arg1; typedef default_policy arg2; }; template <> struct default_args { typedef promote_double arg1; typedef default_policy arg2; }; typedef default_args::arg1 forwarding_arg1; typedef default_args::arg2 forwarding_arg2; } // detail // // Now define the policy type with enough arguments to handle all // the policies: // template class policy { private: // // Validate all our arguments: // static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); static_assert(::boost::math::policies::detail::is_valid_policy::value, "::boost::math::policies::detail::is_valid_policy::value"); // // Typelist of the arguments: // using arg_list = mp::mp_list; static constexpr std::size_t arg_list_size = mp::mp_size::value; template struct pick_arg { using type = A; }; template struct pick_arg { using type = mp::mp_at; }; template class arg_type { private: using index = mp::mp_find_if_q; static constexpr bool end = (index::value >= arg_list_size); public: using type = typename pick_arg::type; }; // Work out the base 2 and 10 precisions to calculate the public precision_type: using digits10_type = typename arg_type, digits10<>>::type; using bits_precision_type = typename arg_type, digits2<>>::type; public: // Error Types: using domain_error_type = typename arg_type, domain_error<>>::type; using pole_error_type = typename arg_type, pole_error<>>::type; using overflow_error_type = typename arg_type, overflow_error<>>::type; using underflow_error_type = typename arg_type, underflow_error<>>::type; using denorm_error_type = typename arg_type, denorm_error<>>::type; using evaluation_error_type = typename arg_type, evaluation_error<>>::type; using rounding_error_type = typename arg_type, rounding_error<>>::type; using indeterminate_result_error_type = typename arg_type, indeterminate_result_error<>>::type; // Precision: using precision_type = typename detail::precision::type; // Internal promotion: using promote_float_type = typename arg_type, promote_float<>>::type; using promote_double_type = typename arg_type, promote_double<>>::type; // Discrete quantiles: using discrete_quantile_type = typename arg_type, discrete_quantile<>>::type; // Mathematically undefined properties: using assert_undefined_type = typename arg_type, assert_undefined<>>::type; // Max iterations: using max_series_iterations_type = typename arg_type, max_series_iterations<>>::type; using max_root_iterations_type = typename arg_type, max_root_iterations<>>::type; }; // // These full specializations are defined to reduce the amount of // template instantiations that have to take place when using the default // policies, they have quite a large impact on compile times: // template <> class policy { public: using domain_error_type = domain_error<>; using pole_error_type = pole_error<>; using overflow_error_type = overflow_error<>; using underflow_error_type = underflow_error<>; using denorm_error_type = denorm_error<>; using evaluation_error_type = evaluation_error<>; using rounding_error_type = rounding_error<>; using indeterminate_result_error_type = indeterminate_result_error<>; #if BOOST_MATH_DIGITS10_POLICY == 0 using precision_type = digits2<>; #else using precision_type = detail::precision, digits2<>>::type; #endif using promote_float_type = promote_float<>; using promote_double_type = promote_double<>; using discrete_quantile_type = discrete_quantile<>; using assert_undefined_type = assert_undefined<>; using max_series_iterations_type = max_series_iterations<>; using max_root_iterations_type = max_root_iterations<>; }; template <> struct policy { public: using domain_error_type = domain_error<>; using pole_error_type = pole_error<>; using overflow_error_type = overflow_error<>; using underflow_error_type = underflow_error<>; using denorm_error_type = denorm_error<>; using evaluation_error_type = evaluation_error<>; using rounding_error_type = rounding_error<>; using indeterminate_result_error_type = indeterminate_result_error<>; #if BOOST_MATH_DIGITS10_POLICY == 0 using precision_type = digits2<>; #else using precision_type = detail::precision, digits2<>>::type; #endif using promote_float_type = promote_float; using promote_double_type = promote_double; using discrete_quantile_type = discrete_quantile<>; using assert_undefined_type = assert_undefined<>; using max_series_iterations_type = max_series_iterations<>; using max_root_iterations_type = max_root_iterations<>; }; template class normalise { private: using arg_list = mp::mp_list; static constexpr std::size_t arg_list_size = mp::mp_size::value; template struct pick_arg { using type = A; }; template struct pick_arg { using type = mp::mp_at; }; template class arg_type { private: using index = mp::mp_find_if_q; static constexpr bool end = (index::value >= arg_list_size); public: using type = typename pick_arg::type; }; // Error types: using domain_error_type = typename arg_type, typename Policy::domain_error_type>::type; using pole_error_type = typename arg_type, typename Policy::pole_error_type>::type; using overflow_error_type = typename arg_type, typename Policy::overflow_error_type>::type; using underflow_error_type = typename arg_type, typename Policy::underflow_error_type>::type; using denorm_error_type = typename arg_type, typename Policy::denorm_error_type>::type; using evaluation_error_type = typename arg_type, typename Policy::evaluation_error_type>::type; using rounding_error_type = typename arg_type, typename Policy::rounding_error_type>::type; using indeterminate_result_error_type = typename arg_type, typename Policy::indeterminate_result_error_type>::type; // Precision: using digits10_type = typename arg_type, digits10<>>::type; using bits_precision_type = typename arg_type, typename Policy::precision_type>::type; using precision_type = typename detail::precision::type; // Internal promotion: using promote_float_type = typename arg_type, typename Policy::promote_float_type>::type; using promote_double_type = typename arg_type, typename Policy::promote_double_type>::type; // Discrete quantiles: using discrete_quantile_type = typename arg_type, typename Policy::discrete_quantile_type>::type; // Mathematically undefined properties: using assert_undefined_type = typename arg_type, typename Policy::assert_undefined_type>::type; // Max iterations: using max_series_iterations_type = typename arg_type, typename Policy::max_series_iterations_type>::type; using max_root_iterations_type = typename arg_type, typename Policy::max_root_iterations_type>::type; // Define a typelist of the policies: using result_list = mp::mp_list< domain_error_type, pole_error_type, overflow_error_type, underflow_error_type, denorm_error_type, evaluation_error_type, rounding_error_type, indeterminate_result_error_type, precision_type, promote_float_type, promote_double_type, discrete_quantile_type, assert_undefined_type, max_series_iterations_type, max_root_iterations_type>; // Remove all the policies that are the same as the default: using fn = mp::mp_quote_trait; using reduced_list = mp::mp_remove_if_q; // Pad out the list with defaults: using result_type = typename detail::append_N::value)>::type; public: using type = policy< mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c, mp::mp_at_c >; }; // Full specialisation to speed up compilation of the common case: template <> struct normalise, promote_float, promote_double, discrete_quantile<>, assert_undefined<>, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy> { using type = policy; }; template <> struct normalise, promote_float, promote_double, discrete_quantile<>, assert_undefined<>, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy> { using type = policy; }; inline constexpr policy<> make_policy() noexcept { return policy<>(); } template inline constexpr typename normalise, A1>::type make_policy(const A1&) noexcept { typedef typename normalise, A1>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2>::type make_policy(const A1&, const A2&) noexcept { typedef typename normalise, A1, A2>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2, A3>::type make_policy(const A1&, const A2&, const A3&) noexcept { typedef typename normalise, A1, A2, A3>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2, A3, A4>::type make_policy(const A1&, const A2&, const A3&, const A4&) noexcept { typedef typename normalise, A1, A2, A3, A4>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2, A3, A4, A5>::type make_policy(const A1&, const A2&, const A3&, const A4&, const A5&) noexcept { typedef typename normalise, A1, A2, A3, A4, A5>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2, A3, A4, A5, A6>::type make_policy(const A1&, const A2&, const A3&, const A4&, const A5&, const A6&) noexcept { typedef typename normalise, A1, A2, A3, A4, A5, A6>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2, A3, A4, A5, A6, A7>::type make_policy(const A1&, const A2&, const A3&, const A4&, const A5&, const A6&, const A7&) noexcept { typedef typename normalise, A1, A2, A3, A4, A5, A6, A7>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2, A3, A4, A5, A6, A7, A8>::type make_policy(const A1&, const A2&, const A3&, const A4&, const A5&, const A6&, const A7&, const A8&) noexcept { typedef typename normalise, A1, A2, A3, A4, A5, A6, A7, A8>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2, A3, A4, A5, A6, A7, A8, A9>::type make_policy(const A1&, const A2&, const A3&, const A4&, const A5&, const A6&, const A7&, const A8&, const A9&) noexcept { typedef typename normalise, A1, A2, A3, A4, A5, A6, A7, A8, A9>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10>::type make_policy(const A1&, const A2&, const A3&, const A4&, const A5&, const A6&, const A7&, const A8&, const A9&, const A10&) noexcept { typedef typename normalise, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10>::type result_type; return result_type(); } template inline constexpr typename normalise, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11>::type make_policy(const A1&, const A2&, const A3&, const A4&, const A5&, const A6&, const A7&, const A8&, const A9&, const A10&, const A11&) noexcept { typedef typename normalise, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11>::type result_type; return result_type(); } // // Traits class to handle internal promotion: // template struct evaluation { typedef Real type; }; template struct evaluation { using type = typename std::conditional::type; }; template struct evaluation { using type = typename std::conditional::type; }; template struct precision { static_assert((std::numeric_limits::radix == 2) || ((std::numeric_limits::is_specialized == 0) || (std::numeric_limits::digits == 0)), "(std::numeric_limits::radix == 2) || ((std::numeric_limits::is_specialized == 0) || (std::numeric_limits::digits == 0))"); #ifndef BOOST_BORLANDC using precision_type = typename Policy::precision_type; using type = typename std::conditional< ((std::numeric_limits::is_specialized == 0) || (std::numeric_limits::digits == 0)), // Possibly unknown precision: precision_type, typename std::conditional< ((std::numeric_limits::digits <= precision_type::value) || (Policy::precision_type::value <= 0)), // Default case, full precision for RealType: digits2< std::numeric_limits::digits>, // User customised precision: precision_type >::type >::type; #else using precision_type = typename Policy::precision_type; using digits_t = std::integral_constant::digits>; using spec_t = std::integral_constant::is_specialized>; using type = typename std::conditional< (spec_t::value == true std::true_type || digits_t::value == 0), // Possibly unknown precision: precision_type, typename std::conditional< (digits_t::value <= precision_type::value || precision_type::value <= 0), // Default case, full precision for RealType: digits2< std::numeric_limits::digits>, // User customised precision: precision_type >::type >::type; #endif }; #ifdef BOOST_MATH_USE_FLOAT128 template struct precision { typedef std::integral_constant type; }; #endif namespace detail{ template inline constexpr int digits_imp(std::true_type const&) noexcept { static_assert( std::numeric_limits::is_specialized, "std::numeric_limits::is_specialized"); typedef typename boost::math::policies::precision::type p_t; return p_t::value; } template inline constexpr int digits_imp(std::false_type const&) noexcept { return tools::digits(); } } // namespace detail template inline constexpr int digits(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T)) noexcept { typedef std::integral_constant::is_specialized > tag_type; return detail::digits_imp(tag_type()); } template inline constexpr int digits_base10(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T)) noexcept { return boost::math::policies::digits() * 301 / 1000L; } template inline constexpr unsigned long get_max_series_iterations() noexcept { typedef typename Policy::max_series_iterations_type iter_type; return iter_type::value; } template inline constexpr unsigned long get_max_root_iterations() noexcept { typedef typename Policy::max_root_iterations_type iter_type; return iter_type::value; } namespace detail{ template struct series_factor_calc { static T get() noexcept(std::is_floating_point::value) { return ldexp(T(1.0), 1 - Digits::value); } }; template struct series_factor_calc { static constexpr T get() noexcept(std::is_floating_point::value) { return boost::math::tools::epsilon(); } }; template struct series_factor_calc { static constexpr T get() noexcept(std::is_floating_point::value) { return 1 / static_cast(static_cast(1u) << (Digits::value - 1)); } }; template struct series_factor_calc { static constexpr T get() noexcept(std::is_floating_point::value) { return boost::math::tools::epsilon(); } }; template inline constexpr T get_epsilon_imp(std::true_type const&) noexcept(std::is_floating_point::value) { static_assert(std::numeric_limits::is_specialized, "std::numeric_limits::is_specialized"); static_assert(std::numeric_limits::radix == 2, "std::numeric_limits::radix == 2"); typedef typename boost::math::policies::precision::type p_t; typedef std::integral_constant::digits> is_small_int; typedef std::integral_constant= std::numeric_limits::digits> is_default_value; return series_factor_calc::get(); } template inline constexpr T get_epsilon_imp(std::false_type const&) noexcept(std::is_floating_point::value) { return tools::epsilon(); } } // namespace detail template inline constexpr T get_epsilon(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T)) noexcept(std::is_floating_point::value) { typedef std::integral_constant::is_specialized && (std::numeric_limits::radix == 2)) > tag_type; return detail::get_epsilon_imp(tag_type()); } namespace detail{ template char test_is_policy(const policy*); double test_is_policy(...); template class is_policy_imp { public: static constexpr bool value = (sizeof(::boost::math::policies::detail::test_is_policy(static_cast(0))) == sizeof(char)); }; } template class is_policy { public: static constexpr bool value = boost::math::policies::detail::is_policy_imp

::value; using type = std::integral_constant; }; // // Helper traits class for distribution error handling: // template struct constructor_error_check { using domain_error_type = typename Policy::domain_error_type; using type = typename std::conditional< (domain_error_type::value == throw_on_error) || (domain_error_type::value == user_error) || (domain_error_type::value == errno_on_error), std::true_type, std::false_type>::type; }; template struct method_error_check { using domain_error_type = typename Policy::domain_error_type; using type = typename std::conditional< (domain_error_type::value == throw_on_error) && (domain_error_type::value != user_error), std::false_type, std::true_type>::type; }; // // Does the Policy ever throw on error? // template struct is_noexcept_error_policy { typedef typename Policy::domain_error_type t1; typedef typename Policy::pole_error_type t2; typedef typename Policy::overflow_error_type t3; typedef typename Policy::underflow_error_type t4; typedef typename Policy::denorm_error_type t5; typedef typename Policy::evaluation_error_type t6; typedef typename Policy::rounding_error_type t7; typedef typename Policy::indeterminate_result_error_type t8; static constexpr bool value = ((t1::value != throw_on_error) && (t1::value != user_error) && (t2::value != throw_on_error) && (t2::value != user_error) && (t3::value != throw_on_error) && (t3::value != user_error) && (t4::value != throw_on_error) && (t4::value != user_error) && (t5::value != throw_on_error) && (t5::value != user_error) && (t6::value != throw_on_error) && (t6::value != user_error) && (t7::value != throw_on_error) && (t7::value != user_error) && (t8::value != throw_on_error) && (t8::value != user_error)); }; }}} // namespaces #endif // BOOST_MATH_POLICY_HPP