Sprout/sprout/math/pow.hpp

52 lines
1.5 KiB
C++
Raw Normal View History

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>
#include <sprout/math/exp.hpp>
#include <sprout/math/log.hpp>
#include <sprout/math/constants.hpp>
2012-05-05 08:35:33 +00:00
#include <sprout/math/float_promote.hpp>
2012-05-04 14:23:39 +00:00
#include <sprout/utility/enabler_if.hpp>
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
# include <cmath>
#endif
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) {
return sprout::math::detail::exp(y * sprout::math::detail::log(x));
}
template<
typename ArithmeticType1,
typename ArithmeticType2,
typename sprout::enabler_if<
std::is_arithmetic<ArithmeticType1>::value && std::is_arithmetic<ArithmeticType2>::value
>::type = sprout::enabler
>
2012-05-05 08:35:33 +00:00
inline SPROUT_CONSTEXPR typename sprout::math::float_promote<ArithmeticType1, ArithmeticType2>::type
2012-05-04 14:23:39 +00:00
pow(ArithmeticType1 x, ArithmeticType2 y) {
2012-05-05 08:35:33 +00:00
typedef typename sprout::math::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
# if SPROUT_USE_BUILTIN_CMATH_FUNCTION
using std::pow;
# else
using sprout::math::detail::pow;
# endif
} // namespace math
using sprout::math::pow;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_POW_HPP