2012-05-04 14:23:39 +00:00
|
|
|
#ifndef SPROUT_MATH_POW_HPP
|
|
|
|
#define SPROUT_MATH_POW_HPP
|
|
|
|
|
|
|
|
#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) {
|
2012-05-05 09:50:17 +00:00
|
|
|
return x == 0 && y > 0 ? FloatType(0)
|
2012-05-10 04:34:49 +00:00
|
|
|
: sprout::math::exp(y * sprout::math::log(x))
|
2012-05-05 09:50:17 +00:00
|
|
|
;
|
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
|