Sprout/sprout/math/frac_int.hpp

61 lines
2.1 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_MATH_FRAC_INT_HPP
#define SPROUT_MATH_FRAC_INT_HPP
2013-02-10 02:54:54 +00:00
#include <type_traits>
#include <sprout/config.hpp>
2013-08-06 15:15:09 +00:00
#include <sprout/limits.hpp>
2013-02-10 02:54:54 +00:00
#include <sprout/math/detail/config.hpp>
2013-04-25 15:25:35 +00:00
#include <sprout/math/copysign.hpp>
#include <sprout/math/isnan.hpp>
#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>
frac_int_impl(T x, T ipart) {
2013-02-14 09:02:43 +00:00
typedef sprout::pair<T, T> type;
2013-05-05 15:22:08 +00:00
return sprout::math::isnan(x) ? type(x, ipart)
2013-08-06 15:15:09 +00:00
: x == sprout::numeric_limits<T>::infinity() || x == -sprout::numeric_limits<T>::infinity() ? type(sprout::math::copysign(T(0), x), ipart)
2013-04-25 15:25:35 +00:00
: x == 0 ? type(x, ipart)
: x == ipart ? type(T(0) * x, ipart)
: type(sprout::math::copysign(x - ipart, x), ipart)
2013-02-14 09:02:43 +00:00
;
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>
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>
frac_int(IntType x) {
return sprout::math::detail::frac_int(static_cast<double>(x));
2013-02-10 02:54:54 +00:00
}
} // namespace detail
using sprout::math::detail::frac_int;
2013-02-10 02:54:54 +00:00
} // namespace math
using sprout::math::frac_int;
2013-02-10 02:54:54 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_MATH_FRAC_INT_HPP