inline boost::math::concepts::std_real_concept modf(boost::math::concepts::std_real_concept a, boost::math::concepts::std_real_concept* ipart) { boost::math::concepts::std_real_concept_base_type ip; boost::math::concepts::std_real_concept_base_type result = std::modf(a.value(), &ip); *ipart = ip; return result; }
inline boost::math::concepts::std_real_concept modf(boost::math::concepts::std_real_concept a, boost::math::concepts::std_real_concept* ipart) { long double ip; long double result = std::modf(a.value(), &ip); *ipart = ip; return result; }
inline boost::math::concepts::std_real_concept tanh(boost::math::concepts::std_real_concept a) { return std::tanh(a.value()); }
inline boost::math::concepts::std_real_concept sqrt(boost::math::concepts::std_real_concept a) { return std::sqrt(a.value()); }
inline boost::math::concepts::std_real_concept pow(boost::math::concepts::std_real_concept a, int b) { return std::pow(a.value(), static_cast<long double>(b)); }
inline boost::math::concepts::std_real_concept pow(boost::math::concepts::std_real_concept a, int b) { return std::pow(a.value(), b); }
inline boost::math::concepts::std_real_concept log10(boost::math::concepts::std_real_concept a) { return std::log10(a.value()); }
inline boost::math::concepts::std_real_concept ldexp(boost::math::concepts::std_real_concept a, int expon) { return std::ldexp(a.value(), expon); }
inline boost::math::concepts::std_real_concept floor(boost::math::concepts::std_real_concept a) { return std::floor(a.value()); }
inline boost::math::concepts::std_real_concept fmod(boost::math::concepts::std_real_concept a, boost::math::concepts::std_real_concept b) { return std::fmod(a.value(), b.value()); }
inline boost::math::concepts::std_real_concept atan2(boost::math::concepts::std_real_concept a, boost::math::concepts::std_real_concept b) { return std::atan2(a.value(), b.value()); }