// (C) Copyright John Maddock 2005. // Use, modification and distribution are subject to 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 BOOST_MATH_COMPLEX_DETAILS_INCLUDED #define BOOST_MATH_COMPLEX_DETAILS_INCLUDED // // This header contains all the support code that is common to the // inverse trig complex functions, it also contains all the includes // that we need to implement all these functions. // #include #include #include #include #include // isnan where available #include #include #include #include #include #ifdef BOOST_NO_STDC_NAMESPACE namespace std{ using ::sqrt; } #endif namespace boost{ namespace math{ namespace detail{ template inline T mult_minus_one(const T& t) { return (boost::math::isnan)(t) ? t : (boost::math::changesign)(t); } template inline std::complex mult_i(const std::complex& t) { return std::complex(mult_minus_one(t.imag()), t.real()); } template inline std::complex mult_minus_i(const std::complex& t) { return std::complex(t.imag(), mult_minus_one(t.real())); } template inline T safe_max(T t) { return std::sqrt((std::numeric_limits::max)()) / t; } inline long double safe_max(long double t) { // long double sqrt often returns infinity due to // insufficient internal precision: return std::sqrt((std::numeric_limits::max)()) / t; } #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) // workaround for type deduction bug: inline float safe_max(float t) { return std::sqrt((std::numeric_limits::max)()) / t; } inline double safe_max(double t) { return std::sqrt((std::numeric_limits::max)()) / t; } #endif template inline T safe_min(T t) { return std::sqrt((std::numeric_limits::min)()) * t; } inline long double safe_min(long double t) { // long double sqrt often returns zero due to // insufficient internal precision: return std::sqrt((std::numeric_limits::min)()) * t; } #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) // type deduction workaround: inline double safe_min(double t) { return std::sqrt((std::numeric_limits::min)()) * t; } inline float safe_min(float t) { return std::sqrt((std::numeric_limits::min)()) * t; } #endif } } } // namespaces #endif // BOOST_MATH_COMPLEX_DETAILS_INCLUDED