2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2013-05-05 15:22:08 +00:00
|
|
|
#ifndef SPROUT_MATH_IS_ODD_HPP
|
|
|
|
#define SPROUT_MATH_IS_ODD_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
2013-05-08 16:15:44 +00:00
|
|
|
#include <sprout/math/isfinite.hpp>
|
2013-05-05 15:22:08 +00:00
|
|
|
#include <sprout/math/fmod.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace math {
|
|
|
|
namespace detail {
|
2013-05-08 16:15:44 +00:00
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
is_odd_unchecked(T x) {
|
|
|
|
return sprout::math::fmod(x, T(2)) == T(1);
|
|
|
|
}
|
2013-05-05 15:22:08 +00:00
|
|
|
} // namespace detail
|
2013-10-25 03:29:16 +00:00
|
|
|
//
|
|
|
|
// is_odd
|
|
|
|
//
|
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
is_odd(FloatType x) {
|
|
|
|
return sprout::math::isfinite(x)
|
2014-07-15 16:03:20 +00:00
|
|
|
&& sprout::math::detail::is_odd_unchecked(x < 0 ? -x : x)
|
2013-10-25 03:29:16 +00:00
|
|
|
;
|
|
|
|
}
|
2013-05-05 15:22:08 +00:00
|
|
|
} // namespace math
|
|
|
|
|
|
|
|
using sprout::math::is_odd;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_IS_ODD_HPP
|