コード例 #1
0
ファイル: std_real_concept.hpp プロジェクト: imos/icfpc2015
inline int itrunc(const concepts::std_real_concept& v)
{
   return boost::math::itrunc(v.value(), policies::policy<>());
}
コード例 #2
0
ファイル: std_real_concept.hpp プロジェクト: imos/icfpc2015
inline boost::long_long_type llround(const concepts::std_real_concept& v)
{
   return boost::math::llround(v.value(), policies::policy<>());
}
コード例 #3
0
ファイル: std_real_concept.hpp プロジェクト: imos/icfpc2015
inline int itrunc(const concepts::std_real_concept& v, const Policy& pol)
{
   return boost::math::itrunc(v.value(), pol);
}
コード例 #4
0
ファイル: std_real_concept.hpp プロジェクト: imos/icfpc2015
inline boost::long_long_type llround(const concepts::std_real_concept& v, const Policy& pol)
{
   return boost::math::llround(v.value(), pol);
}
コード例 #5
0
inline lslboost::long_long_type lltrunc(const concepts::std_real_concept& v)
{
   return lslboost::math::lltrunc(v.value(), policies::policy<>());
}
コード例 #6
0
inline lslboost::long_long_type lltrunc(const concepts::std_real_concept& v, const Policy& pol)
{
   return lslboost::math::lltrunc(v.value(), pol);
}
コード例 #7
0
inline long lround(const concepts::std_real_concept& v)
{
   return lslboost::math::lround(v.value(), policies::policy<>());
}
コード例 #8
0
inline long lround(const concepts::std_real_concept& v, const Policy& pol)
{
   return lslboost::math::lround(v.value(), pol);
}