#ifndef SPROUT_MATH_LCM_HPP #define SPROUT_MATH_LCM_HPP #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR RingType lcm_euclidean_impl(RingType a, RingType b, RingType temp) { return temp != static_cast(0) ? (a / temp * b) : static_cast(0) ; } template inline SPROUT_CONSTEXPR RingType lcm_euclidean(RingType a, RingType b) { return sprout::math::detail::lcm_euclidean_impl( a, b, sprout::math::detail::gcd_euclidean(a, b) ); } template inline SPROUT_CONSTEXPR IntType lcm_integer_impl(IntType result) { return result < static_cast(0) ? -result : result; } template inline SPROUT_CONSTEXPR IntType lcm_integer(IntType const& a, IntType const& b) { return sprout::math::detail::lcm_integer_impl( sprout::math::detail::lcm_euclidean(a, b) ); } template struct lcm_optimal_evaluator_helper_t { public: SPROUT_CONSTEXPR T operator()(T const& a, T const& b) const { return sprout::math::detail::lcm_euclidean(a, b); } }; template struct lcm_optimal_evaluator_helper_t { public: SPROUT_CONSTEXPR T operator()(T const& a, T const& b) const { return sprout::math::detail::lcm_integer(a, b); } }; template struct lcm_optimal_evaluator { public: SPROUT_CONSTEXPR T operator()(T const& a, T const& b) const { typedef std::numeric_limits limits_type; typedef sprout::math::detail::lcm_optimal_evaluator_helper_t< T, limits_type::is_specialized, limits_type::is_signed > helper_type; return helper_type().operator()(a, b); } }; template inline SPROUT_CONSTEXPR T lcm_optimal(T const& a, T const& b) { return sprout::math::detail::lcm_optimal_evaluator().operator()(a, b); } } // namespace detail // // lcm_evaluator // template class lcm_evaluator { public: typedef IntType result_type; typedef IntType first_argument_type; typedef IntType second_argument_type; public: SPROUT_CONSTEXPR IntType operator()(IntType const& a, IntType const& b) const { return sprout::math::detail::lcm_optimal(a, b); } }; template<> class lcm_evaluator { public: template SPROUT_CONSTEXPR IntType operator()(IntType const& a, IntType const& b) const { return sprout::math::detail::lcm_optimal(a, b); } }; // // lcm // template inline SPROUT_CONSTEXPR IntType lcm(IntType const& a, IntType const& b) { return sprout::math::lcm_evaluator().operator()(a, b); } } // namespace math } // namespace boost #endif // #ifndef SPROUT_MATH_LCM_HPP