123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842 |
- ///////////////////////////////////////////////////////////////
- // Copyright 2013 John Maddock. Distributed under the Boost
- // Software License, Version 1.0. (See accompanying file
- // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
- #ifndef BOOST_MP_FLOAT128_HPP
- #define BOOST_MP_FLOAT128_HPP
- #include <boost/config.hpp>
- #include <boost/scoped_array.hpp>
- #include <boost/functional/hash.hpp>
- #include <boost/multiprecision/number.hpp>
- #if defined(BOOST_INTEL) && !defined(BOOST_MP_USE_FLOAT128) && !defined(BOOST_MP_USE_QUAD)
- #if defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION >= 1310) && defined(__GNUC__)
- #if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6))
- #define BOOST_MP_USE_FLOAT128
- #endif
- #endif
- #ifndef BOOST_MP_USE_FLOAT128
- #define BOOST_MP_USE_QUAD
- #endif
- #endif
- #if defined(__GNUC__) && !defined(BOOST_MP_USE_FLOAT128) && !defined(BOOST_MP_USE_QUAD)
- #define BOOST_MP_USE_FLOAT128
- #endif
- #if !defined(BOOST_MP_USE_FLOAT128) && !defined(BOOST_MP_USE_QUAD)
- #error "Sorry compiler is neither GCC, not Intel, don't know how to configure this header."
- #endif
- #if defined(BOOST_MP_USE_FLOAT128) && defined(BOOST_MP_USE_QUAD)
- #error "Oh dear, both BOOST_MP_USE_FLOAT128 and BOOST_MP_USE_QUAD are defined, which one should I be using?"
- #endif
- #if defined(BOOST_MP_USE_FLOAT128)
- extern "C" {
- #include <quadmath.h>
- }
- typedef __float128 float128_type;
- #elif defined(BOOST_MP_USE_QUAD)
- #include <boost/multiprecision/detail/float_string_cvt.hpp>
- typedef _Quad float128_type;
- extern "C" {
- _Quad __ldexpq(_Quad, int);
- _Quad __frexpq(_Quad, int*);
- _Quad __fabsq(_Quad);
- _Quad __floorq(_Quad);
- _Quad __ceilq(_Quad);
- _Quad __sqrtq(_Quad);
- _Quad __truncq(_Quad);
- _Quad __expq(_Quad);
- _Quad __powq(_Quad, _Quad);
- _Quad __logq(_Quad);
- _Quad __log10q(_Quad);
- _Quad __sinq(_Quad);
- _Quad __cosq(_Quad);
- _Quad __tanq(_Quad);
- _Quad __asinq(_Quad);
- _Quad __acosq(_Quad);
- _Quad __atanq(_Quad);
- _Quad __sinhq(_Quad);
- _Quad __coshq(_Quad);
- _Quad __tanhq(_Quad);
- _Quad __fmodq(_Quad, _Quad);
- _Quad __atan2q(_Quad, _Quad);
- #define ldexpq __ldexpq
- #define frexpq __frexpq
- #define fabsq __fabsq
- #define floorq __floorq
- #define ceilq __ceilq
- #define sqrtq __sqrtq
- #define truncq __truncq
- #define expq __expq
- #define powq __powq
- #define logq __logq
- #define log10q __log10q
- #define sinq __sinq
- #define cosq __cosq
- #define tanq __tanq
- #define asinq __asinq
- #define acosq __acosq
- #define atanq __atanq
- #define sinhq __sinhq
- #define coshq __coshq
- #define tanhq __tanhq
- #define fmodq __fmodq
- #define atan2q __atan2q
- }
- inline _Quad isnanq(_Quad v)
- {
- return v != v;
- }
- inline _Quad isinfq(_Quad v)
- {
- return __fabsq(v) > 1.18973149535723176508575932662800702e4932Q;
- }
- #endif
- namespace boost {
- namespace multiprecision {
- namespace backends {
- struct float128_backend;
- }
- using backends::float128_backend;
- template <>
- struct number_category<backends::float128_backend> : public mpl::int_<number_kind_floating_point>
- {};
- #if defined(BOOST_MP_USE_QUAD)
- template <>
- struct number_category<float128_type> : public mpl::int_<number_kind_floating_point>
- {};
- #endif
- typedef number<float128_backend, et_off> float128;
- #ifndef BOOST_NO_CXX11_CONSTEXPR
- namespace quad_constants {
- constexpr __float128 quad_min = static_cast<__float128>(1) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) / 1073741824;
- constexpr __float128 quad_denorm_min = static_cast<__float128>(1) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) * static_cast<__float128>(DBL_MIN) / 5.5751862996326557854e+42;
- constexpr double dbl_mult = 8.9884656743115795386e+307; // This has one bit set only.
- constexpr __float128 quad_max = (static_cast<__float128>(1) - 9.62964972193617926527988971292463659e-35) // This now has all bits sets to 1
- * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * static_cast<__float128>(dbl_mult) * 65536;
- } // namespace quad_constants
- #define BOOST_MP_QUAD_MIN boost::multiprecision::quad_constants::quad_min
- #define BOOST_MP_QUAD_DENORM_MIN boost::multiprecision::quad_constants::quad_denorm_min
- #define BOOST_MP_QUAD_MAX boost::multiprecision::quad_constants::quad_max
- #else
- #define BOOST_MP_QUAD_MIN 3.36210314311209350626267781732175260e-4932Q
- #define BOOST_MP_QUAD_DENORM_MIN 6.475175119438025110924438958227646552e-4966Q
- #define BOOST_MP_QUAD_MAX 1.18973149535723176508575932662800702e4932Q
- #endif
- namespace backends {
- struct float128_backend
- {
- typedef mpl::list<signed char, short, int, long, boost::long_long_type> signed_types;
- typedef mpl::list<unsigned char, unsigned short,
- unsigned int, unsigned long, boost::ulong_long_type>
- unsigned_types;
- typedef mpl::list<float, double, long double> float_types;
- typedef int exponent_type;
- private:
- float128_type m_value;
- public:
- BOOST_CONSTEXPR float128_backend() BOOST_NOEXCEPT : m_value(0) {}
- BOOST_CONSTEXPR float128_backend(const float128_backend& o) BOOST_NOEXCEPT : m_value(o.m_value) {}
- BOOST_MP_CXX14_CONSTEXPR float128_backend& operator=(const float128_backend& o) BOOST_NOEXCEPT
- {
- m_value = o.m_value;
- return *this;
- }
- template <class T>
- BOOST_CONSTEXPR float128_backend(const T& i, const typename enable_if_c<is_convertible<T, float128_type>::value>::type* = 0) BOOST_NOEXCEPT_IF(noexcept(std::declval<float128_type&>() = std::declval<const T&>()))
- : m_value(i) {}
- template <class T>
- BOOST_MP_CXX14_CONSTEXPR typename enable_if_c<is_arithmetic<T>::value || is_convertible<T, float128_type>::value, float128_backend&>::type operator=(const T& i) BOOST_NOEXCEPT_IF(noexcept(std::declval<float128_type&>() = std::declval<const T&>()))
- {
- m_value = i;
- return *this;
- }
- BOOST_MP_CXX14_CONSTEXPR float128_backend(long double const& f) : m_value(f)
- {
- if (::fabsl(f) > LDBL_MAX)
- m_value = (f < 0) ? -static_cast<__float128>(HUGE_VAL) : static_cast<__float128>(HUGE_VAL);
- }
- BOOST_MP_CXX14_CONSTEXPR float128_backend& operator=(long double const& f)
- {
- if (f > LDBL_MAX)
- m_value = static_cast<__float128>(HUGE_VAL);
- else if (-f > LDBL_MAX)
- m_value = -static_cast<__float128>(HUGE_VAL);
- else
- m_value = f;
- return *this;
- }
- float128_backend& operator=(const char* s)
- {
- #ifndef BOOST_MP_USE_QUAD
- char* p_end;
- m_value = strtoflt128(s, &p_end);
- if (p_end - s != (std::ptrdiff_t)std::strlen(s))
- {
- BOOST_THROW_EXCEPTION(std::runtime_error("Unable to interpret input string as a floating point value"));
- }
- #else
- boost::multiprecision::detail::convert_from_string(*this, s);
- #endif
- return *this;
- }
- BOOST_MP_CXX14_CONSTEXPR void swap(float128_backend& o) BOOST_NOEXCEPT
- {
- // We don't call std::swap here because it's no constexpr (yet):
- float128_type t(o.value());
- o.value() = m_value;
- m_value = t;
- }
- std::string str(std::streamsize digits, std::ios_base::fmtflags f) const
- {
- #ifndef BOOST_MP_USE_QUAD
- char buf[128];
- std::string format = "%";
- if (f & std::ios_base::showpos)
- format += "+";
- if (f & std::ios_base::showpoint)
- format += "#";
- format += ".*";
- if (digits == 0)
- digits = 36;
- format += "Q";
- if (f & std::ios_base::scientific)
- format += "e";
- else if (f & std::ios_base::fixed)
- format += "f";
- else
- format += "g";
- int v;
- if ((f & std::ios_base::scientific) && (f & std::ios_base::fixed))
- {
- v = quadmath_snprintf(buf, sizeof buf, "%Qa", m_value);
- }
- else
- {
- v = quadmath_snprintf(buf, sizeof buf, format.c_str(), digits, m_value);
- }
- if ((v < 0) || (v >= 127))
- {
- int v_max = v;
- boost::scoped_array<char> buf2;
- buf2.reset(new char[v + 3]);
- v = quadmath_snprintf(&buf2[0], v_max + 3, format.c_str(), digits, m_value);
- if (v >= v_max + 3)
- {
- BOOST_THROW_EXCEPTION(std::runtime_error("Formatting of float128_type failed."));
- }
- return &buf2[0];
- }
- return buf;
- #else
- return boost::multiprecision::detail::convert_to_string(*this, digits ? digits : 37, f);
- #endif
- }
- BOOST_MP_CXX14_CONSTEXPR void negate() BOOST_NOEXCEPT
- {
- m_value = -m_value;
- }
- BOOST_MP_CXX14_CONSTEXPR int compare(const float128_backend& o) const
- {
- return m_value == o.m_value ? 0 : m_value < o.m_value ? -1 : 1;
- }
- template <class T>
- BOOST_MP_CXX14_CONSTEXPR int compare(const T& i) const
- {
- return m_value == i ? 0 : m_value < i ? -1 : 1;
- }
- BOOST_MP_CXX14_CONSTEXPR float128_type& value()
- {
- return m_value;
- }
- BOOST_MP_CXX14_CONSTEXPR const float128_type& value() const
- {
- return m_value;
- }
- };
- inline BOOST_MP_CXX14_CONSTEXPR void eval_add(float128_backend& result, const float128_backend& a)
- {
- result.value() += a.value();
- }
- template <class A>
- inline BOOST_MP_CXX14_CONSTEXPR void eval_add(float128_backend& result, const A& a)
- {
- result.value() += a;
- }
- inline BOOST_MP_CXX14_CONSTEXPR void eval_subtract(float128_backend& result, const float128_backend& a)
- {
- result.value() -= a.value();
- }
- template <class A>
- inline BOOST_MP_CXX14_CONSTEXPR void eval_subtract(float128_backend& result, const A& a)
- {
- result.value() -= a;
- }
- inline BOOST_MP_CXX14_CONSTEXPR void eval_multiply(float128_backend& result, const float128_backend& a)
- {
- result.value() *= a.value();
- }
- template <class A>
- inline BOOST_MP_CXX14_CONSTEXPR void eval_multiply(float128_backend& result, const A& a)
- {
- result.value() *= a;
- }
- inline BOOST_MP_CXX14_CONSTEXPR void eval_divide(float128_backend& result, const float128_backend& a)
- {
- result.value() /= a.value();
- }
- template <class A>
- inline BOOST_MP_CXX14_CONSTEXPR void eval_divide(float128_backend& result, const A& a)
- {
- result.value() /= a;
- }
- inline BOOST_MP_CXX14_CONSTEXPR void eval_add(float128_backend& result, const float128_backend& a, const float128_backend& b)
- {
- result.value() = a.value() + b.value();
- }
- template <class A>
- inline BOOST_MP_CXX14_CONSTEXPR void eval_add(float128_backend& result, const float128_backend& a, const A& b)
- {
- result.value() = a.value() + b;
- }
- inline BOOST_MP_CXX14_CONSTEXPR void eval_subtract(float128_backend& result, const float128_backend& a, const float128_backend& b)
- {
- result.value() = a.value() - b.value();
- }
- template <class A>
- inline BOOST_MP_CXX14_CONSTEXPR void eval_subtract(float128_backend& result, const float128_backend& a, const A& b)
- {
- result.value() = a.value() - b;
- }
- template <class A>
- inline BOOST_MP_CXX14_CONSTEXPR void eval_subtract(float128_backend& result, const A& a, const float128_backend& b)
- {
- result.value() = a - b.value();
- }
- inline BOOST_MP_CXX14_CONSTEXPR void eval_multiply(float128_backend& result, const float128_backend& a, const float128_backend& b)
- {
- result.value() = a.value() * b.value();
- }
- template <class A>
- inline BOOST_MP_CXX14_CONSTEXPR void eval_multiply(float128_backend& result, const float128_backend& a, const A& b)
- {
- result.value() = a.value() * b;
- }
- inline BOOST_MP_CXX14_CONSTEXPR void eval_divide(float128_backend& result, const float128_backend& a, const float128_backend& b)
- {
- result.value() = a.value() / b.value();
- }
- template <class R>
- inline BOOST_MP_CXX14_CONSTEXPR void eval_convert_to(R* result, const float128_backend& val)
- {
- *result = static_cast<R>(val.value());
- }
- inline void eval_frexp(float128_backend& result, const float128_backend& arg, int* exp)
- {
- result.value() = frexpq(arg.value(), exp);
- }
- inline void eval_ldexp(float128_backend& result, const float128_backend& arg, int exp)
- {
- result.value() = ldexpq(arg.value(), exp);
- }
- inline void eval_floor(float128_backend& result, const float128_backend& arg)
- {
- result.value() = floorq(arg.value());
- }
- inline void eval_ceil(float128_backend& result, const float128_backend& arg)
- {
- result.value() = ceilq(arg.value());
- }
- inline void eval_sqrt(float128_backend& result, const float128_backend& arg)
- {
- result.value() = sqrtq(arg.value());
- }
- #ifndef BOOST_MP_NO_CONSTEXPR_DETECTION
- inline BOOST_MP_CXX14_CONSTEXPR
- #else
- inline
- #endif
- int eval_fpclassify(const float128_backend& arg)
- {
- float128_type v = arg.value();
- #ifndef BOOST_MP_NO_CONSTEXPR_DETECTION
- if (BOOST_MP_IS_CONST_EVALUATED(v))
- {
- if (v != v)
- return FP_NAN;
- if (v == 0)
- return FP_ZERO;
- float128_type t(v);
- if (t < 0)
- t = -t;
- if (t > BOOST_MP_QUAD_MAX)
- return FP_INFINITE;
- if (t < BOOST_MP_QUAD_MIN)
- return FP_SUBNORMAL;
- return FP_NORMAL;
- }
- else
- #endif
- {
- if (isnanq(v))
- return FP_NAN;
- else if (isinfq(v))
- return FP_INFINITE;
- else if (v == 0)
- return FP_ZERO;
- float128_backend t(arg);
- if (t.value() < 0)
- t.negate();
- if (t.value() < BOOST_MP_QUAD_MIN)
- return FP_SUBNORMAL;
- return FP_NORMAL;
- }
- }
- #if defined(BOOST_GCC) && (__GNUC__ == 9)
- // See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91705
- inline BOOST_MP_CXX14_CONSTEXPR void eval_increment(float128_backend& arg)
- {
- arg.value() = 1 + arg.value();
- }
- inline BOOST_MP_CXX14_CONSTEXPR void eval_decrement(float128_backend& arg)
- {
- arg.value() = arg.value() - 1;
- }
- #else
- inline BOOST_MP_CXX14_CONSTEXPR void eval_increment(float128_backend& arg)
- {
- ++arg.value();
- }
- inline BOOST_MP_CXX14_CONSTEXPR void eval_decrement(float128_backend& arg)
- {
- --arg.value();
- }
- #endif
- /*********************************************************************
- *
- * abs/fabs:
- *
- *********************************************************************/
- #ifndef BOOST_MP_NO_CONSTEXPR_DETECTION
- inline BOOST_MP_CXX14_CONSTEXPR void eval_abs(float128_backend& result, const float128_backend& arg)
- #else
- inline void eval_abs(float128_backend& result, const float128_backend& arg)
- #endif
- {
- float128_type v(arg.value());
- #ifndef BOOST_MP_NO_CONSTEXPR_DETECTION
- if (BOOST_MP_IS_CONST_EVALUATED(v))
- {
- result.value() = v < 0 ? -v : v;
- }
- else
- #endif
- {
- result.value() = fabsq(arg.value());
- }
- }
- #ifndef BOOST_MP_NO_CONSTEXPR_DETECTION
- inline BOOST_MP_CXX14_CONSTEXPR void eval_fabs(float128_backend& result, const float128_backend& arg)
- #else
- inline void eval_fabs(float128_backend& result, const float128_backend& arg)
- #endif
- {
- float128_type v(arg.value());
- #ifndef BOOST_MP_NO_CONSTEXPR_DETECTION
- if (BOOST_MP_IS_CONST_EVALUATED(v))
- {
- result.value() = v < 0 ? -v : v;
- }
- else
- #endif
- {
- result.value() = fabsq(arg.value());
- }
- }
- /*********************************************************************
- *
- * Floating point functions:
- *
- *********************************************************************/
- inline void eval_trunc(float128_backend& result, const float128_backend& arg)
- {
- result.value() = truncq(arg.value());
- }
- /*
- //
- // This doesn't actually work... rely on our own default version instead.
- //
- inline void eval_round(float128_backend& result, const float128_backend& arg)
- {
- if(isnanq(arg.value()) || isinf(arg.value()))
- {
- result = boost::math::policies::raise_rounding_error(
- "boost::multiprecision::trunc<%1%>(%1%)", 0,
- number<float128_backend, et_off>(arg),
- number<float128_backend, et_off>(arg),
- boost::math::policies::policy<>()).backend();
- return;
- }
- result.value() = roundq(arg.value());
- }
- */
- inline void eval_exp(float128_backend& result, const float128_backend& arg)
- {
- result.value() = expq(arg.value());
- }
- inline void eval_log(float128_backend& result, const float128_backend& arg)
- {
- result.value() = logq(arg.value());
- }
- inline void eval_log10(float128_backend& result, const float128_backend& arg)
- {
- result.value() = log10q(arg.value());
- }
- inline void eval_sin(float128_backend& result, const float128_backend& arg)
- {
- result.value() = sinq(arg.value());
- }
- inline void eval_cos(float128_backend& result, const float128_backend& arg)
- {
- result.value() = cosq(arg.value());
- }
- inline void eval_tan(float128_backend& result, const float128_backend& arg)
- {
- result.value() = tanq(arg.value());
- }
- inline void eval_asin(float128_backend& result, const float128_backend& arg)
- {
- result.value() = asinq(arg.value());
- }
- inline void eval_acos(float128_backend& result, const float128_backend& arg)
- {
- result.value() = acosq(arg.value());
- }
- inline void eval_atan(float128_backend& result, const float128_backend& arg)
- {
- result.value() = atanq(arg.value());
- }
- inline void eval_sinh(float128_backend& result, const float128_backend& arg)
- {
- result.value() = sinhq(arg.value());
- }
- inline void eval_cosh(float128_backend& result, const float128_backend& arg)
- {
- result.value() = coshq(arg.value());
- }
- inline void eval_tanh(float128_backend& result, const float128_backend& arg)
- {
- result.value() = tanhq(arg.value());
- }
- inline void eval_fmod(float128_backend& result, const float128_backend& a, const float128_backend& b)
- {
- result.value() = fmodq(a.value(), b.value());
- }
- inline void eval_pow(float128_backend& result, const float128_backend& a, const float128_backend& b)
- {
- result.value() = powq(a.value(), b.value());
- }
- inline void eval_atan2(float128_backend& result, const float128_backend& a, const float128_backend& b)
- {
- result.value() = atan2q(a.value(), b.value());
- }
- #ifndef BOOST_MP_USE_QUAD
- inline void eval_multiply_add(float128_backend& result, const float128_backend& a, const float128_backend& b, const float128_backend& c)
- {
- result.value() = fmaq(a.value(), b.value(), c.value());
- }
- inline int eval_signbit BOOST_PREVENT_MACRO_SUBSTITUTION(const float128_backend& arg)
- {
- return ::signbitq(arg.value());
- }
- #endif
- inline std::size_t hash_value(const float128_backend& val)
- {
- return boost::hash_value(static_cast<double>(val.value()));
- }
- } // namespace backends
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> asinh BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return asinhq(arg.backend().value());
- }
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> acosh BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return acoshq(arg.backend().value());
- }
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> atanh BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return atanhq(arg.backend().value());
- }
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> cbrt BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return cbrtq(arg.backend().value());
- }
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> erf BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return erfq(arg.backend().value());
- }
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> erfc BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return erfcq(arg.backend().value());
- }
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> expm1 BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return expm1q(arg.backend().value());
- }
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> lgamma BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return lgammaq(arg.backend().value());
- }
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> tgamma BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return tgammaq(arg.backend().value());
- }
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<float128_backend, ExpressionTemplates> log1p BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<float128_backend, ExpressionTemplates>& arg)
- {
- return log1pq(arg.backend().value());
- }
- #ifndef BOOST_MP_USE_QUAD
- template <multiprecision::expression_template_option ExpressionTemplates>
- inline boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> copysign BOOST_PREVENT_MACRO_SUBSTITUTION(const boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates>& a, const boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates>& b)
- {
- return ::copysignq(a.backend().value(), b.backend().value());
- }
- inline void eval_remainder(float128_backend& result, const float128_backend& a, const float128_backend& b)
- {
- result.value() = remainderq(a.value(), b.value());
- }
- inline void eval_remainder(float128_backend& result, const float128_backend& a, const float128_backend& b, int* pi)
- {
- result.value() = remquoq(a.value(), b.value(), pi);
- }
- #endif
- } // namespace multiprecision
- namespace math {
- using boost::multiprecision::copysign;
- using boost::multiprecision::signbit;
- } // namespace math
- } // namespace boost
- namespace boost {
- namespace archive {
- class binary_oarchive;
- class binary_iarchive;
- } // namespace archive
- namespace serialization {
- namespace float128_detail {
- template <class Archive>
- void do_serialize(Archive& ar, boost::multiprecision::backends::float128_backend& val, const mpl::false_&, const mpl::false_&)
- {
- // saving
- // non-binary
- std::string s(val.str(0, std::ios_base::scientific));
- ar& boost::make_nvp("value", s);
- }
- template <class Archive>
- void do_serialize(Archive& ar, boost::multiprecision::backends::float128_backend& val, const mpl::true_&, const mpl::false_&)
- {
- // loading
- // non-binary
- std::string s;
- ar& boost::make_nvp("value", s);
- val = s.c_str();
- }
- template <class Archive>
- void do_serialize(Archive& ar, boost::multiprecision::backends::float128_backend& val, const mpl::false_&, const mpl::true_&)
- {
- // saving
- // binary
- ar.save_binary(&val, sizeof(val));
- }
- template <class Archive>
- void do_serialize(Archive& ar, boost::multiprecision::backends::float128_backend& val, const mpl::true_&, const mpl::true_&)
- {
- // loading
- // binary
- ar.load_binary(&val, sizeof(val));
- }
- } // namespace float128_detail
- template <class Archive>
- void serialize(Archive& ar, boost::multiprecision::backends::float128_backend& val, unsigned int /*version*/)
- {
- typedef typename Archive::is_loading load_tag;
- typedef typename mpl::bool_<boost::is_same<Archive, boost::archive::binary_oarchive>::value || boost::is_same<Archive, boost::archive::binary_iarchive>::value> binary_tag;
- float128_detail::do_serialize(ar, val, load_tag(), binary_tag());
- }
- } // namespace serialization
- } // namespace boost
- namespace std {
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- class numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >
- {
- typedef boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> number_type;
- public:
- BOOST_STATIC_CONSTEXPR bool is_specialized = true;
- static BOOST_MP_CXX14_CONSTEXPR number_type(min)() BOOST_NOEXCEPT { return BOOST_MP_QUAD_MIN; }
- static BOOST_MP_CXX14_CONSTEXPR number_type(max)() BOOST_NOEXCEPT { return BOOST_MP_QUAD_MAX; }
- static BOOST_MP_CXX14_CONSTEXPR number_type lowest() BOOST_NOEXCEPT { return -(max)(); }
- BOOST_STATIC_CONSTEXPR int digits = 113;
- BOOST_STATIC_CONSTEXPR int digits10 = 33;
- BOOST_STATIC_CONSTEXPR int max_digits10 = 36;
- BOOST_STATIC_CONSTEXPR bool is_signed = true;
- BOOST_STATIC_CONSTEXPR bool is_integer = false;
- BOOST_STATIC_CONSTEXPR bool is_exact = false;
- BOOST_STATIC_CONSTEXPR int radix = 2;
- static BOOST_MP_CXX14_CONSTEXPR number_type epsilon() { return 1.92592994438723585305597794258492732e-34; /* this double value has only one bit set and so is exact */ }
- static BOOST_MP_CXX14_CONSTEXPR number_type round_error() { return 0.5; }
- BOOST_STATIC_CONSTEXPR int min_exponent = -16381;
- BOOST_STATIC_CONSTEXPR int min_exponent10 = min_exponent * 301L / 1000L;
- BOOST_STATIC_CONSTEXPR int max_exponent = 16384;
- BOOST_STATIC_CONSTEXPR int max_exponent10 = max_exponent * 301L / 1000L;
- BOOST_STATIC_CONSTEXPR bool has_infinity = true;
- BOOST_STATIC_CONSTEXPR bool has_quiet_NaN = true;
- BOOST_STATIC_CONSTEXPR bool has_signaling_NaN = false;
- BOOST_STATIC_CONSTEXPR float_denorm_style has_denorm = denorm_present;
- BOOST_STATIC_CONSTEXPR bool has_denorm_loss = true;
- static BOOST_MP_CXX14_CONSTEXPR number_type infinity() { return HUGE_VAL; /* conversion from double infinity OK */ }
- static BOOST_MP_CXX14_CONSTEXPR number_type quiet_NaN() { return number_type("nan"); }
- static BOOST_MP_CXX14_CONSTEXPR number_type signaling_NaN() { return 0; }
- static BOOST_MP_CXX14_CONSTEXPR number_type denorm_min() { return BOOST_MP_QUAD_DENORM_MIN; }
- BOOST_STATIC_CONSTEXPR bool is_iec559 = true;
- BOOST_STATIC_CONSTEXPR bool is_bounded = true;
- BOOST_STATIC_CONSTEXPR bool is_modulo = false;
- BOOST_STATIC_CONSTEXPR bool traps = false;
- BOOST_STATIC_CONSTEXPR bool tinyness_before = false;
- BOOST_STATIC_CONSTEXPR float_round_style round_style = round_to_nearest;
- };
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::is_specialized;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::digits;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::digits10;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::max_digits10;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::is_signed;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::is_integer;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::is_exact;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::radix;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::min_exponent;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::max_exponent;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::min_exponent10;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::max_exponent10;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::has_infinity;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::has_quiet_NaN;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::has_signaling_NaN;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::has_denorm_loss;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::is_iec559;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::is_bounded;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::is_modulo;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::traps;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::tinyness_before;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST float_round_style numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::round_style;
- template <boost::multiprecision::expression_template_option ExpressionTemplates>
- BOOST_CONSTEXPR_OR_CONST float_denorm_style numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::float128_backend, ExpressionTemplates> >::has_denorm;
- } // namespace std
- #endif
|