/*============================================================================= 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_FMAX_HPP #define SPROUT_MATH_FMAX_HPP #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType fmax(FloatType x, FloatType y) { return sprout::math::isnan(y) ? x : sprout::math::isnan(x) ? y : y == -sprout::numeric_limits::infinity() ? x : x == sprout::numeric_limits::infinity() ? x : x == -sprout::numeric_limits::infinity() ? y : y == sprout::numeric_limits::infinity() ? y #if SPROUT_USE_BUILTIN_CMATH_FUNCTION : x == 0 && y == 0 ? x : std::fmax(x, y) #else : x < y ? y : x #endif ; } template< typename ArithmeticType1, typename ArithmeticType2, typename sprout::enabler_if< std::is_arithmetic::value && std::is_arithmetic::value >::type = sprout::enabler > inline SPROUT_CONSTEXPR typename sprout::float_promote::type fmax(ArithmeticType1 x, ArithmeticType2 y) { typedef typename sprout::float_promote::type type; return sprout::math::detail::fmax(static_cast(x), static_cast(y)); } } // namespace detail using sprout::math::detail::fmax; } // namespace math using sprout::math::fmax; } // namespace sprout #endif // #ifndef SPROUT_MATH_FMAX_HPP