min_max.hpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Copyright 2016 John Maddock. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_MP_MIN_MAX_HPP
  6. #define BOOST_MP_MIN_MAX_HPP
  7. #include <boost/multiprecision/traits/is_backend.hpp>
  8. namespace boost{ namespace multiprecision{
  9. //
  10. // Expression template overloads for (min) and (max):
  11. //
  12. // Introduced in response to https://svn.boost.org/trac/boost/ticket/11149
  13. // note that these can not legally be injected into namespace std, and that doing so
  14. // may break future enhancements to the standard. None the less adding
  15. // namespace std{ using boost::multiprecision::(min); using boost::multiprecision::(max); }
  16. // to your code may get some generic code working that wouldn't work otherwise.
  17. //
  18. // The use of enable_if on the return type is to avoid poisoning std::min/max,
  19. // otherwise attempting to make an explicit call to min<long>(a, b) when these and std
  20. // versions are in scope, will cause the compiler to try to instantiate the signatures
  21. // for our versions as well as the std ones, which in turn instantiates number<long>
  22. // which fails to compile as "long" is not a valid backend type.
  23. //
  24. template <class Backend>
  25. inline typename boost::enable_if_c < boost::multiprecision::detail::is_backend<Backend>::value, const number<Backend, et_on>&>::type
  26. (min)(const number<Backend, et_on>& a, const number<Backend, et_on>& b)
  27. {
  28. return a < b ? a : b;
  29. }
  30. template <class Backend, class tag, class A1, class A2, class A3, class A4>
  31. inline typename boost::enable_if_c < boost::multiprecision::detail::is_backend<Backend>::value, const number<Backend, et_on> >::type
  32. (min)(const number<Backend, et_on>& a, const detail::expression<tag, A1, A2, A3, A4>& b)
  33. {
  34. number<Backend, et_on> t(b);
  35. if(a < t)
  36. return a;
  37. return BOOST_MP_MOVE(t);
  38. }
  39. template <class tag, class A1, class A2, class A3, class A4, class Backend>
  40. inline typename boost::enable_if_c < boost::multiprecision::detail::is_backend<Backend>::value, const number<Backend, et_on> >::type
  41. (min)(const detail::expression<tag, A1, A2, A3, A4>& a, const number<Backend, et_on>& b)
  42. {
  43. number<Backend, et_on> t(a);
  44. if(t < b)
  45. return BOOST_MP_MOVE(t);
  46. return b;
  47. }
  48. template <class tag, class A1, class A2, class A3, class A4, class tagb, class A1b, class A2b, class A3b, class A4b>
  49. inline typename detail::expression<tag, A1, A2, A3, A4>::result_type
  50. (min)(const detail::expression<tag, A1, A2, A3, A4>& a, const detail::expression<tagb, A1b, A2b, A3b, A4b>& b)
  51. {
  52. typename detail::expression<tag, A1, A2, A3, A4>::result_type t1(a), t2(b);
  53. if(t1 < t2)
  54. return BOOST_MP_MOVE(t1);
  55. return BOOST_MP_MOVE(t2);
  56. }
  57. template <class tag, class A1, class A2, class A3, class A4>
  58. inline typename detail::expression<tag, A1, A2, A3, A4>::result_type (min)(const detail::expression<tag, A1, A2, A3, A4>& a, const detail::expression<tag, A1, A2, A3, A4>& b)
  59. {
  60. typename detail::expression<tag, A1, A2, A3, A4>::result_type t1(a), t2(b);
  61. if(t1 < t2)
  62. return BOOST_MP_MOVE(t1);
  63. return BOOST_MP_MOVE(t2);
  64. }
  65. template <class Backend>
  66. inline typename boost::enable_if_c < boost::multiprecision::detail::is_backend<Backend>::value, const number<Backend, et_on>&>::type
  67. (max)(const number<Backend, et_on>& a, const number<Backend, et_on>& b)
  68. {
  69. return a > b ? a : b;
  70. }
  71. template <class Backend, class tag, class A1, class A2, class A3, class A4>
  72. inline typename boost::enable_if_c < boost::multiprecision::detail::is_backend<Backend>::value, const number<Backend, et_on> >::type
  73. (max)(const number<Backend, et_on>& a, const detail::expression<tag, A1, A2, A3, A4>& b)
  74. {
  75. number<Backend, et_on> t(b);
  76. if(a > t)
  77. return a;
  78. return BOOST_MP_MOVE(t);
  79. }
  80. template <class tag, class A1, class A2, class A3, class A4, class Backend>
  81. inline typename boost::enable_if_c < boost::multiprecision::detail::is_backend<Backend>::value, const number<Backend, et_on> >::type
  82. (max)(const detail::expression<tag, A1, A2, A3, A4>& a, const number<Backend, et_on>& b)
  83. {
  84. number<Backend, et_on> t(a);
  85. if(t > b)
  86. return BOOST_MP_MOVE(t);
  87. return b;
  88. }
  89. template <class tag, class A1, class A2, class A3, class A4, class tagb, class A1b, class A2b, class A3b, class A4b>
  90. inline typename detail::expression<tag, A1, A2, A3, A4>::result_type
  91. (max)(const detail::expression<tag, A1, A2, A3, A4>& a, const detail::expression<tagb, A1b, A2b, A3b, A4b>& b)
  92. {
  93. typename detail::expression<tag, A1, A2, A3, A4>::result_type t1(a), t2(b);
  94. if(t1 > t2)
  95. return BOOST_MP_MOVE(t1);
  96. return BOOST_MP_MOVE(t2);
  97. }
  98. template <class tag, class A1, class A2, class A3, class A4>
  99. inline typename detail::expression<tag, A1, A2, A3, A4>::result_type (max)(const detail::expression<tag, A1, A2, A3, A4>& a, const detail::expression<tag, A1, A2, A3, A4>& b)
  100. {
  101. typename detail::expression<tag, A1, A2, A3, A4>::result_type t1(a), t2(b);
  102. if(t1 > t2)
  103. return BOOST_MP_MOVE(t1);
  104. return BOOST_MP_MOVE(t2);
  105. }
  106. }} // namespaces
  107. #endif