inline lslboost::long_long_type lltrunc(const concepts::real_concept& v)
{ return lslboost::math::lltrunc(v.value(), policies::policy<>()); }
inline int itrunc(const concepts::real_concept& v)
{ return lslboost::math::itrunc(v.value(), policies::policy<>()); }
inline lslboost::long_long_type lltrunc(const concepts::real_concept& v, const Policy& pol)
{ return lslboost::math::lltrunc(v.value(), pol); }
inline long lround(const concepts::real_concept& v)
{ return lslboost::math::lround(v.value(), policies::policy<>()); }
inline int itrunc(const concepts::real_concept& v, const Policy& pol)
{ return lslboost::math::itrunc(v.value(), pol); }
Esempio n. 6
0
inline long ltrunc(const concepts::real_concept& v)
{ return boost::math::ltrunc(v.value(), policies::policy<>()); }
inline long lround(const concepts::real_concept& v, const Policy& pol)
{ return lslboost::math::lround(v.value(), pol); }
Esempio n. 8
0
inline long ltrunc(const concepts::real_concept& v, const Policy& pol)
{ return boost::math::ltrunc(v.value(), pol); }
Esempio n. 9
0
inline boost::long_long_type llround(const concepts::real_concept& v)
{ return boost::math::llround(v.value(), policies::policy<>()); }
Esempio n. 10
0
inline boost::long_long_type llround(const concepts::real_concept& v, const Policy& pol)
{ return boost::math::llround(v.value(), pol); }
Esempio n. 11
0
inline int iround(const concepts::real_concept& v)
{ return boost::math::iround(v.value(), policies::policy<>()); }
Esempio n. 12
0
inline int iround(const concepts::real_concept& v, const Policy& pol)
{ return boost::math::iround(v.value(), pol); }