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); }
Beispiel #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); }
Beispiel #8
0
inline long ltrunc(const concepts::real_concept& v, const Policy& pol)
{ return boost::math::ltrunc(v.value(), pol); }
Beispiel #9
0
inline boost::long_long_type llround(const concepts::real_concept& v)
{ return boost::math::llround(v.value(), policies::policy<>()); }
Beispiel #10
0
inline boost::long_long_type llround(const concepts::real_concept& v, const Policy& pol)
{ return boost::math::llround(v.value(), pol); }
Beispiel #11
0
inline int iround(const concepts::real_concept& v)
{ return boost::math::iround(v.value(), policies::policy<>()); }
Beispiel #12
0
inline int iround(const concepts::real_concept& v, const Policy& pol)
{ return boost::math::iround(v.value(), pol); }