Sprout/sprout/math/sinh.hpp

84 lines
2.5 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
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)
=============================================================================*/
2012-05-04 05:07:36 +00:00
#ifndef SPROUT_MATH_SINH_HPP
#define SPROUT_MATH_SINH_HPP
#include <cstddef>
#include <type_traits>
#include <sprout/config.hpp>
2013-08-06 15:15:09 +00:00
#include <sprout/limits.hpp>
2012-06-23 04:22:50 +00:00
#include <sprout/math/detail/config.hpp>
2013-02-14 09:02:43 +00:00
#include <sprout/math/detail/float_compute.hpp>
2013-04-29 01:56:46 +00:00
#include <sprout/math/isnan.hpp>
2013-05-04 15:06:30 +00:00
#include <sprout/math/exp.hpp>
2012-05-26 15:43:38 +00:00
#include <sprout/type_traits/enabler_if.hpp>
2012-05-04 05:07:36 +00:00
namespace sprout {
namespace math {
namespace detail {
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
inline SPROUT_CONSTEXPR float
builtin_sinh(float x) {
return __builtin_sinhf(x);
}
inline SPROUT_CONSTEXPR double
builtin_sinh(double x) {
return __builtin_sinh(x);
}
inline SPROUT_CONSTEXPR long double
builtin_sinh(long double x) {
return __builtin_sinhl(x);
}
#endif
2012-05-04 05:07:36 +00:00
template<typename T>
inline SPROUT_CONSTEXPR T
2013-05-04 15:06:30 +00:00
sinh_impl_1(T t) {
return T(0.5) * t - T(0.5) / t;
2012-05-04 05:07:36 +00:00
}
template<typename T>
inline SPROUT_CONSTEXPR T
sinh_impl(T x) {
2013-05-04 15:06:30 +00:00
return sprout::math::detail::sinh_impl_1(sprout::math::exp(x));
}
} // namespace detail
//
// sinh
//
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR FloatType
sinh(FloatType x) {
return sprout::math::isnan(x) ? x
: x == sprout::numeric_limits<FloatType>::infinity() ? sprout::numeric_limits<FloatType>::infinity()
: x == -sprout::numeric_limits<FloatType>::infinity() ? -sprout::numeric_limits<FloatType>::infinity()
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
: sprout::math::detail::builtin_sinh(x)
#else
: x == 0 ? x
: static_cast<FloatType>(sprout::math::detail::sinh_impl(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x)))
#endif
;
}
template<
typename IntType,
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR double
sinh(IntType x) {
return sprout::math::sinh(static_cast<double>(x));
}
2012-05-04 05:07:36 +00:00
} // namespace math
using sprout::math::sinh;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_SINH_HPP