Sprout/sprout/math/pow.hpp

71 lines
2.6 KiB
C++
Raw Normal View History

2012-05-04 14:23:39 +00:00
#ifndef SPROUT_MATH_POW_HPP
#define SPROUT_MATH_POW_HPP
2013-02-14 09:02:43 +00:00
#include <limits>
2012-05-04 14:23:39 +00:00
#include <type_traits>
#include <sprout/config.hpp>
2012-06-23 04:22:50 +00:00
#include <sprout/math/detail/config.hpp>
2012-05-04 14:23:39 +00:00
#include <sprout/math/exp.hpp>
#include <sprout/math/log.hpp>
#include <sprout/math/constants.hpp>
2012-07-07 05:58:46 +00:00
#include <sprout/type_traits/float_promote.hpp>
2012-05-26 15:43:38 +00:00
#include <sprout/type_traits/enabler_if.hpp>
2012-05-04 14:23:39 +00:00
namespace sprout {
namespace math {
namespace detail {
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR FloatType
pow(FloatType x, FloatType y) {
2013-02-14 09:02:43 +00:00
return x == 0
? y < 0 ? std::numeric_limits<FloatType>::infinity()
: y > 0 ? FloatType(0)
: sprout::math::exp(y * sprout::math::log(x))
2013-02-14 09:02:43 +00:00
: x == -1 && (y == std::numeric_limits<FloatType>::infinity() || y == -std::numeric_limits<FloatType>::infinity()) ? FloatType(1)
: x == 1 ? FloatType(1)
: y == 0 ? FloatType(1)
: y == -std::numeric_limits<FloatType>::infinity()
? x < 1 && x > -1 ? std::numeric_limits<FloatType>::infinity()
: x > 1 || x < -1 ? FloatType(0)
: sprout::math::exp(y * sprout::math::log(x))
2013-02-14 09:02:43 +00:00
: y == std::numeric_limits<FloatType>::infinity()
? x < 1 && x > -1 ? FloatType(0)
: x > 1 || x < -1 ? std::numeric_limits<FloatType>::infinity()
: sprout::math::exp(y * sprout::math::log(x))
2013-02-14 09:02:43 +00:00
: x == -std::numeric_limits<FloatType>::infinity()
? y < 0 ? FloatType(0)
: y > 0 ? std::numeric_limits<FloatType>::infinity()
: sprout::math::exp(y * sprout::math::log(x))
2013-02-14 09:02:43 +00:00
: x == std::numeric_limits<FloatType>::infinity()
? y < 0 ? FloatType(0)
: y > 0 ? std::numeric_limits<FloatType>::infinity()
: sprout::math::exp(y * sprout::math::log(x))
: sprout::math::exp(y * sprout::math::log(x))
;
2012-05-04 14:23:39 +00:00
}
template<
typename ArithmeticType1,
typename ArithmeticType2,
typename sprout::enabler_if<
std::is_arithmetic<ArithmeticType1>::value && std::is_arithmetic<ArithmeticType2>::value
>::type = sprout::enabler
>
2012-07-07 05:58:46 +00:00
inline SPROUT_CONSTEXPR typename sprout::float_promote<ArithmeticType1, ArithmeticType2>::type
2012-05-04 14:23:39 +00:00
pow(ArithmeticType1 x, ArithmeticType2 y) {
2012-07-07 05:58:46 +00:00
typedef typename sprout::float_promote<ArithmeticType1, ArithmeticType2>::type type;
2012-05-04 14:23:39 +00:00
return sprout::math::detail::pow(static_cast<type>(x), static_cast<type>(y));
}
} // namespace detail
2012-06-23 04:22:50 +00:00
using NS_SPROUT_MATH_DETAIL::pow;
2012-05-04 14:23:39 +00:00
} // namespace math
using sprout::math::pow;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_POW_HPP