/*============================================================================= 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_LOG_HPP #define SPROUT_MATH_LOG_HPP #include #include #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T log_impl_2(T x, std::size_t n, std::size_t last) { return last - n == 1 ? (n % 2 ? 1 : -1) * sprout::detail::pow_n(x, n) / n : sprout::math::detail::log_impl_2(x, n, n + (last - n) / 2) + sprout::math::detail::log_impl_2(x, n + (last - n) / 2, last) ; } template inline SPROUT_CONSTEXPR T log_impl_1(T x) { return !(x > sprout::math::root_two()) ? sprout::math::detail::log_impl_2(x - T(1), 1, sprout::math::factorial_limit() + 1) : T(2) * sprout::math::detail::log_impl_1(sprout::math::sqrt(x)) ; } template inline SPROUT_CONSTEXPR T log_impl(T x) { return x < 1 ? -sprout::math::detail::log_impl_1(T(1) / x) : sprout::math::detail::log_impl_1(x) ; } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType log(FloatType x) { return sprout::math::isnan(x) ? x : x == 0 ? -sprout::numeric_limits::infinity() : x == sprout::numeric_limits::infinity() ? sprout::numeric_limits::infinity() : x < 0 ? sprout::numeric_limits::quiet_NaN() #if SPROUT_USE_BUILTIN_CMATH_FUNCTION : std::log(x) #else : x == 1 ? FloatType(0) : static_cast(sprout::math::detail::log_impl(static_cast::type>(x))) #endif ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double log(IntType x) { return sprout::math::detail::log(static_cast(x)); } } // namespace detail using sprout::math::detail::log; } // namespace math using sprout::math::log; } // namespace sprout #endif // #ifndef SPROUT_MATH_LOG_HPP