// This is a copy of boost/multiprecision/detail/number_compare.hpp from boost 1.59 to replace buggy version from 1.58. #ifdef BOOST_MP_COMPARE_HPP #error This bug workaround header must be included before original boost/multiprecision/detail/number_compare.hpp #endif /////////////////////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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 BOOST_MP_COMPARE_HPP #define BOOST_MP_COMPARE_HPP // A copy of boost/multiprecision/traits/is_backend.hpp #ifndef BOOST_MP_IS_BACKEND_HPP #define BOOST_MP_IS_BACKEND_HPP #include #include #include #include #include namespace boost{ namespace multiprecision{ namespace detail{ BOOST_MPL_HAS_XXX_TRAIT_DEF(signed_types) BOOST_MPL_HAS_XXX_TRAIT_DEF(unsigned_types) BOOST_MPL_HAS_XXX_TRAIT_DEF(float_types) template struct is_backend { static const bool value = has_signed_types::value && has_unsigned_types::value && has_float_types::value; }; template struct other_backend { typedef typename boost::conditional< boost::is_same, number >::value, number, number >::type type; }; template struct number_from_backend { typedef typename boost::conditional < boost::is_convertible >::value, number, typename other_backend::type > ::type type; }; template struct is_first_backend_imp{ static const bool value = false; }; template struct is_first_backend_imp{ static const bool value = is_convertible >::value || is_convertible >::value; }; template struct is_first_backend : is_first_backend_imp::value, T, U> {}; template struct is_second_backend_imp{ static const bool value = false; }; template struct is_second_backend_imp{ static const bool value = is_convertible >::value || is_convertible >::value; }; template struct is_second_backend : is_second_backend_imp::value, T, U> {}; } } } #endif // BOOST_MP_IS_BACKEND_HPP // // Comparison operators for number. // namespace boost{ namespace multiprecision{ namespace default_ops{ template inline bool eval_eq(const B& a, const B& b) { return a.compare(b) == 0; } template inline typename enable_if_c::value, bool>::type eval_eq(const T& a, const U& b) { typename boost::multiprecision::detail::number_from_backend::type t(b); return eval_eq(a, t.backend()); } template inline typename enable_if_c::value, bool>::type eval_eq(const T& a, const U& b) { typename boost::multiprecision::detail::number_from_backend::type t(a); return eval_eq(t.backend(), b); } template inline bool eval_lt(const B& a, const B& b) { return a.compare(b) < 0; } template inline typename enable_if_c::value, bool>::type eval_lt(const T& a, const U& b) { typename boost::multiprecision::detail::number_from_backend::type t(b); return eval_lt(a, t.backend()); } template inline typename enable_if_c::value, bool>::type eval_lt(const T& a, const U& b) { typename boost::multiprecision::detail::number_from_backend::type t(a); return eval_lt(t.backend(), b); } template inline bool eval_gt(const B& a, const B& b) { return a.compare(b) > 0; } template inline typename enable_if_c::value, bool>::type eval_gt(const T& a, const U& b) { typename boost::multiprecision::detail::number_from_backend::type t(b); return eval_gt(a, t.backend()); } template inline typename enable_if_c::value, bool>::type eval_gt(const T& a, const U& b) { typename boost::multiprecision::detail::number_from_backend::type t(a); return eval_gt(t.backend(), b); } } // namespace default_ops namespace detail{ template struct is_valid_mixed_compare : public mpl::false_ {}; template struct is_valid_mixed_compare, Val> : public is_convertible > {}; template struct is_valid_mixed_compare, number > : public mpl::false_ {}; template struct is_valid_mixed_compare, expression > : public mpl::bool_, number >::value> {}; template struct is_valid_mixed_compare, number > : public mpl::bool_, number >::value> {}; template inline BOOST_CONSTEXPR typename boost::enable_if_c::value != number_kind_floating_point, bool>::type is_unordered_value(const number&) { return false; } template inline BOOST_CONSTEXPR typename boost::enable_if_c::value == number_kind_floating_point, bool>::type is_unordered_value(const number& a) { using default_ops::eval_fpclassify; return eval_fpclassify(a.backend()) == FP_NAN; } template inline BOOST_CONSTEXPR typename boost::enable_if_c::value != number_kind_floating_point, bool>::type is_unordered_value(const Arithmetic&) { return false; } template inline BOOST_CONSTEXPR typename boost::enable_if_c::value == number_kind_floating_point, bool>::type is_unordered_value(const Arithmetic& a) { return (boost::math::isnan)(a); } template inline BOOST_CONSTEXPR bool is_unordered_comparison(const T& a, const U& b) { return is_unordered_value(a) || is_unordered_value(b); } } template inline bool operator == (const number& a, const number& b) { using default_ops::eval_eq; if(detail::is_unordered_comparison(a, b)) return false; return eval_eq(a.backend(), b.backend()); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator == (const number& a, const Arithmetic& b) { using default_ops::eval_eq; if(detail::is_unordered_comparison(a, b)) return false; return eval_eq(a.backend(), number::canonical_value(b)); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator == (const Arithmetic& a, const number& b) { using default_ops::eval_eq; if(detail::is_unordered_comparison(a, b)) return false; return eval_eq(b.backend(), number::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator == (const Arithmetic& a, const detail::expression& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_eq; result_type t(b); if(detail::is_unordered_comparison(a, t)) return false; return eval_eq(t.backend(), result_type::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator == (const detail::expression& a, const Arithmetic& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_eq; result_type t(a); if(detail::is_unordered_comparison(t, b)) return false; return eval_eq(t.backend(), result_type::canonical_value(b)); } template inline typename enable_if::result_type, typename detail::expression::result_type>, bool>::type operator == (const detail::expression& a, const detail::expression& b) { using default_ops::eval_eq; typename detail::expression::result_type t(a); typename detail::expression::result_type t2(b); if(detail::is_unordered_comparison(t, t2)) return false; return eval_eq(t.backend(), t2.backend()); } template inline bool operator != (const number& a, const number& b) { using default_ops::eval_eq; if(detail::is_unordered_comparison(a, b)) return true; return !eval_eq(a.backend(), b.backend()); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator != (const number& a, const Arithmetic& b) { using default_ops::eval_eq; if(detail::is_unordered_comparison(a, b)) return true; return !eval_eq(a.backend(), number::canonical_value(b)); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator != (const Arithmetic& a, const number& b) { using default_ops::eval_eq; if(detail::is_unordered_comparison(a, b)) return true; return !eval_eq(b.backend(), number::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator != (const Arithmetic& a, const detail::expression& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_eq; result_type t(b); if(detail::is_unordered_comparison(a, t)) return true; return !eval_eq(t.backend(), result_type::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator != (const detail::expression& a, const Arithmetic& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_eq; result_type t(a); if(detail::is_unordered_comparison(t, b)) return true; return !eval_eq(t.backend(), result_type::canonical_value(b)); } template inline typename enable_if::result_type, typename detail::expression::result_type>, bool>::type operator != (const detail::expression& a, const detail::expression& b) { using default_ops::eval_eq; typename detail::expression::result_type t(a); typename detail::expression::result_type t2(b); if(detail::is_unordered_comparison(t, t2)) return true; return !eval_eq(t.backend(), t2.backend()); } template inline bool operator < (const number& a, const number& b) { using default_ops::eval_lt; if(detail::is_unordered_comparison(a, b)) return false; return eval_lt(a.backend(), b.backend()); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator < (const number& a, const Arithmetic& b) { using default_ops::eval_lt; if(detail::is_unordered_comparison(a, b)) return false; return eval_lt(a.backend(), number::canonical_value(b)); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator < (const Arithmetic& a, const number& b) { using default_ops::eval_gt; if(detail::is_unordered_comparison(a, b)) return false; return eval_gt(b.backend(), number::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator < (const Arithmetic& a, const detail::expression& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_gt; result_type t(b); if(detail::is_unordered_comparison(a, t)) return false; return eval_gt(t.backend(), result_type::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator < (const detail::expression& a, const Arithmetic& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_lt; result_type t(a); if(detail::is_unordered_comparison(t, b)) return false; return eval_lt(t.backend(), result_type::canonical_value(b)); } template inline typename enable_if::result_type, typename detail::expression::result_type>, bool>::type operator < (const detail::expression& a, const detail::expression& b) { using default_ops::eval_lt; typename detail::expression::result_type t(a); typename detail::expression::result_type t2(b); if(detail::is_unordered_comparison(t, t2)) return false; return eval_lt(t.backend(), t2.backend()); } template inline bool operator > (const number& a, const number& b) { using default_ops::eval_gt; if(detail::is_unordered_comparison(a, b)) return false; return eval_gt(a.backend(), b.backend()); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator > (const number& a, const Arithmetic& b) { using default_ops::eval_gt; if(detail::is_unordered_comparison(a, b)) return false; return eval_gt(a.backend(), number::canonical_value(b)); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator > (const Arithmetic& a, const number& b) { using default_ops::eval_lt; if(detail::is_unordered_comparison(a, b)) return false; return eval_lt(b.backend(), number::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator > (const Arithmetic& a, const detail::expression& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_lt; result_type t(b); if(detail::is_unordered_comparison(a, t)) return false; return a > t; } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator > (const detail::expression& a, const Arithmetic& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_gt; result_type t(a); if(detail::is_unordered_comparison(t, b)) return false; return t > b; } template inline typename enable_if::result_type, typename detail::expression::result_type>, bool>::type operator > (const detail::expression& a, const detail::expression& b) { using default_ops::eval_gt; typename detail::expression::result_type t(a); typename detail::expression::result_type t2(b); if(detail::is_unordered_comparison(t, t2)) return false; return t > t2; } template inline bool operator <= (const number& a, const number& b) { using default_ops::eval_gt; if(detail::is_unordered_comparison(a, b)) return false; return !eval_gt(a.backend(), b.backend()); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator <= (const number& a, const Arithmetic& b) { using default_ops::eval_gt; if(detail::is_unordered_comparison(a, b)) return false; return !eval_gt(a.backend(), number::canonical_value(b)); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator <= (const Arithmetic& a, const number& b) { using default_ops::eval_lt; if(detail::is_unordered_comparison(a, b)) return false; return !eval_lt(b.backend(), number::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator <= (const Arithmetic& a, const detail::expression& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_lt; if(detail::is_unordered_value(a) || detail::is_unordered_value(b)) return false; result_type t(b); if(detail::is_unordered_comparison(a, t)) return false; return !eval_lt(t.backend(), result_type::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator <= (const detail::expression& a, const Arithmetic& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_gt; result_type t(a); if(detail::is_unordered_comparison(t, b)) return false; return !eval_gt(t.backend(), result_type::canonical_value(b)); } template inline typename enable_if::result_type, typename detail::expression::result_type>, bool>::type operator <= (const detail::expression& a, const detail::expression& b) { using default_ops::eval_gt; typename detail::expression::result_type t(a); typename detail::expression::result_type t2(b); if(detail::is_unordered_comparison(t, t2)) return false; return !eval_gt(t.backend(), t2.backend()); } template inline bool operator >= (const number& a, const number& b) { using default_ops::eval_lt; if(detail::is_unordered_comparison(a, b)) return false; return !eval_lt(a.backend(), b.backend()); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator >= (const number& a, const Arithmetic& b) { using default_ops::eval_lt; if(detail::is_unordered_comparison(a, b)) return false; return !eval_lt(a.backend(), number::canonical_value(b)); } template inline typename enable_if_c, Arithmetic>::value, bool>::type operator >= (const Arithmetic& a, const number& b) { using default_ops::eval_gt; if(detail::is_unordered_comparison(a, b)) return false; return !eval_gt(b.backend(), number::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator >= (const Arithmetic& a, const detail::expression& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_gt; result_type t(b); if(detail::is_unordered_comparison(a, t)) return false; return !eval_gt(t.backend(), result_type::canonical_value(a)); } template inline typename enable_if_c::result_type, Arithmetic>::value, bool>::type operator >= (const detail::expression& a, const Arithmetic& b) { typedef typename detail::expression::result_type result_type; using default_ops::eval_lt; result_type t(a); if(detail::is_unordered_comparison(t, b)) return false; return !eval_lt(t.backend(), result_type::canonical_value(b)); } template inline typename enable_if::result_type, typename detail::expression::result_type>, bool>::type operator >= (const detail::expression& a, const detail::expression& b) { using default_ops::eval_lt; typename detail::expression::result_type t(a); typename detail::expression::result_type t2(b); if(detail::is_unordered_comparison(t, t2)) return false; return !eval_lt(t.backend(), t2.backend()); } }} // namespaces #endif // BOOST_MP_COMPARE_HPP