2013-02-10 08:12:31 +00:00
|
|
|
#ifndef SPROUT_MATH_FRAC_INT_HPP
|
|
|
|
#define SPROUT_MATH_FRAC_INT_HPP
|
2013-02-10 02:54:54 +00:00
|
|
|
|
2013-02-14 09:02:43 +00:00
|
|
|
#include <limits>
|
2013-02-10 02:54:54 +00:00
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/math/detail/config.hpp>
|
2013-02-10 08:12:31 +00:00
|
|
|
#include <sprout/math/integer_part.hpp>
|
2013-02-10 02:54:54 +00:00
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace math {
|
|
|
|
namespace detail {
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<T, T>
|
2013-02-10 08:12:31 +00:00
|
|
|
frac_int_impl(T x, T ipart) {
|
2013-02-14 09:02:43 +00:00
|
|
|
typedef sprout::pair<T, T> type;
|
2013-03-22 05:24:19 +00:00
|
|
|
return x == std::numeric_limits<T>::infinity() || x == -std::numeric_limits<T>::infinity() ? type(T(0), ipart)
|
2013-02-14 09:02:43 +00:00
|
|
|
: x == std::numeric_limits<T>::quiet_NaN() ? type(std::numeric_limits<T>::quiet_NaN(), ipart)
|
|
|
|
: type(x - ipart, ipart)
|
|
|
|
;
|
2013-02-10 02:54:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<FloatType, FloatType>
|
2013-02-10 08:12:31 +00:00
|
|
|
frac_int(FloatType x) {
|
2013-04-23 10:03:03 +00:00
|
|
|
return sprout::math::detail::frac_int_impl(x, sprout::integer_part(x));
|
2013-02-10 02:54:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<
|
|
|
|
typename IntType,
|
|
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<double, double>
|
2013-02-10 08:12:31 +00:00
|
|
|
frac_int(IntType x) {
|
|
|
|
return sprout::math::detail::frac_int(static_cast<double>(x));
|
2013-02-10 02:54:54 +00:00
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
|
2013-02-10 08:12:31 +00:00
|
|
|
using sprout::math::detail::frac_int;
|
2013-02-10 02:54:54 +00:00
|
|
|
} // namespace math
|
|
|
|
|
2013-02-10 08:12:31 +00:00
|
|
|
using sprout::math::frac_int;
|
2013-02-10 02:54:54 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
2013-02-10 08:12:31 +00:00
|
|
|
#endif // #ifndef SPROUT_MATH_FRAC_INT_HPP
|