Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===---------------------------- numeric ---------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_NUMERIC |
| 12 | #define _LIBCPP_NUMERIC |
| 13 | |
| 14 | /* |
| 15 | numeric synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | template <class InputIterator, class T> |
| 21 | T |
| 22 | accumulate(InputIterator first, InputIterator last, T init); |
| 23 | |
| 24 | template <class InputIterator, class T, class BinaryOperation> |
| 25 | T |
| 26 | accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op); |
| 27 | |
| 28 | template <class InputIterator1, class InputIterator2, class T> |
| 29 | T |
| 30 | inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, T init); |
| 31 | |
| 32 | template <class InputIterator1, class InputIterator2, class T, class BinaryOperation1, class BinaryOperation2> |
| 33 | T |
| 34 | inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, |
| 35 | T init, BinaryOperation1 binary_op1, BinaryOperation2 binary_op2); |
| 36 | |
| 37 | template <class InputIterator, class OutputIterator> |
| 38 | OutputIterator |
| 39 | partial_sum(InputIterator first, InputIterator last, OutputIterator result); |
| 40 | |
| 41 | template <class InputIterator, class OutputIterator, class BinaryOperation> |
| 42 | OutputIterator |
| 43 | partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op); |
| 44 | |
| 45 | template <class InputIterator, class OutputIterator> |
| 46 | OutputIterator |
| 47 | adjacent_difference(InputIterator first, InputIterator last, OutputIterator result); |
| 48 | |
| 49 | template <class InputIterator, class OutputIterator, class BinaryOperation> |
| 50 | OutputIterator |
| 51 | adjacent_difference(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op); |
| 52 | |
Howard Hinnant | ebef745 | 2010-05-26 18:53:44 +0000 | [diff] [blame] | 53 | template <class ForwardIterator, class T> |
| 54 | void iota(ForwardIterator first, ForwardIterator last, T value); |
| 55 | |
Marshall Clow | 1c1e91d | 2016-07-26 14:29:45 +0000 | [diff] [blame] | 56 | template <class M, class N> |
| 57 | constexpr common_type_t<M,N> gcd(M m, N n); // C++17 |
| 58 | |
| 59 | template <class M, class N> |
| 60 | constexpr common_type_t<M,N> lcm(M m, N n); // C++17 |
| 61 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 62 | } // std |
| 63 | |
| 64 | */ |
| 65 | |
| 66 | #include <__config> |
| 67 | #include <iterator> |
Eric Fiselier | 34da9b5 | 2017-02-08 00:14:13 +0000 | [diff] [blame^] | 68 | #include <limits> // for numeric_limits |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 69 | |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 70 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 71 | #pragma GCC system_header |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 72 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 73 | |
| 74 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 75 | |
| 76 | template <class _InputIterator, class _Tp> |
| 77 | inline _LIBCPP_INLINE_VISIBILITY |
| 78 | _Tp |
| 79 | accumulate(_InputIterator __first, _InputIterator __last, _Tp __init) |
| 80 | { |
| 81 | for (; __first != __last; ++__first) |
| 82 | __init = __init + *__first; |
| 83 | return __init; |
| 84 | } |
| 85 | |
| 86 | template <class _InputIterator, class _Tp, class _BinaryOperation> |
| 87 | inline _LIBCPP_INLINE_VISIBILITY |
| 88 | _Tp |
| 89 | accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, _BinaryOperation __binary_op) |
| 90 | { |
| 91 | for (; __first != __last; ++__first) |
| 92 | __init = __binary_op(__init, *__first); |
| 93 | return __init; |
| 94 | } |
| 95 | |
| 96 | template <class _InputIterator1, class _InputIterator2, class _Tp> |
| 97 | inline _LIBCPP_INLINE_VISIBILITY |
| 98 | _Tp |
| 99 | inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _Tp __init) |
| 100 | { |
Eric Fiselier | b991975 | 2014-10-27 19:28:20 +0000 | [diff] [blame] | 101 | for (; __first1 != __last1; ++__first1, (void) ++__first2) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 102 | __init = __init + *__first1 * *__first2; |
| 103 | return __init; |
| 104 | } |
| 105 | |
| 106 | template <class _InputIterator1, class _InputIterator2, class _Tp, class _BinaryOperation1, class _BinaryOperation2> |
| 107 | inline _LIBCPP_INLINE_VISIBILITY |
| 108 | _Tp |
| 109 | inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, |
| 110 | _Tp __init, _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary_op2) |
| 111 | { |
Eric Fiselier | b991975 | 2014-10-27 19:28:20 +0000 | [diff] [blame] | 112 | for (; __first1 != __last1; ++__first1, (void) ++__first2) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 113 | __init = __binary_op1(__init, __binary_op2(*__first1, *__first2)); |
| 114 | return __init; |
| 115 | } |
| 116 | |
| 117 | template <class _InputIterator, class _OutputIterator> |
| 118 | inline _LIBCPP_INLINE_VISIBILITY |
| 119 | _OutputIterator |
| 120 | partial_sum(_InputIterator __first, _InputIterator __last, _OutputIterator __result) |
| 121 | { |
| 122 | if (__first != __last) |
| 123 | { |
| 124 | typename iterator_traits<_InputIterator>::value_type __t(*__first); |
| 125 | *__result = __t; |
Eric Fiselier | b991975 | 2014-10-27 19:28:20 +0000 | [diff] [blame] | 126 | for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 127 | { |
| 128 | __t = __t + *__first; |
| 129 | *__result = __t; |
| 130 | } |
| 131 | } |
| 132 | return __result; |
| 133 | } |
| 134 | |
| 135 | template <class _InputIterator, class _OutputIterator, class _BinaryOperation> |
| 136 | inline _LIBCPP_INLINE_VISIBILITY |
| 137 | _OutputIterator |
| 138 | partial_sum(_InputIterator __first, _InputIterator __last, _OutputIterator __result, |
| 139 | _BinaryOperation __binary_op) |
| 140 | { |
| 141 | if (__first != __last) |
| 142 | { |
| 143 | typename iterator_traits<_InputIterator>::value_type __t(*__first); |
| 144 | *__result = __t; |
Eric Fiselier | b991975 | 2014-10-27 19:28:20 +0000 | [diff] [blame] | 145 | for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 146 | { |
| 147 | __t = __binary_op(__t, *__first); |
| 148 | *__result = __t; |
| 149 | } |
| 150 | } |
| 151 | return __result; |
| 152 | } |
| 153 | |
| 154 | template <class _InputIterator, class _OutputIterator> |
| 155 | inline _LIBCPP_INLINE_VISIBILITY |
| 156 | _OutputIterator |
| 157 | adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterator __result) |
| 158 | { |
| 159 | if (__first != __last) |
| 160 | { |
| 161 | typename iterator_traits<_InputIterator>::value_type __t1(*__first); |
| 162 | *__result = __t1; |
Eric Fiselier | b991975 | 2014-10-27 19:28:20 +0000 | [diff] [blame] | 163 | for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 164 | { |
| 165 | typename iterator_traits<_InputIterator>::value_type __t2(*__first); |
| 166 | *__result = __t2 - __t1; |
Howard Hinnant | 1c44f51 | 2013-08-22 18:02:34 +0000 | [diff] [blame] | 167 | __t1 = _VSTD::move(__t2); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 168 | } |
| 169 | } |
| 170 | return __result; |
| 171 | } |
| 172 | |
| 173 | template <class _InputIterator, class _OutputIterator, class _BinaryOperation> |
| 174 | inline _LIBCPP_INLINE_VISIBILITY |
| 175 | _OutputIterator |
| 176 | adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterator __result, |
| 177 | _BinaryOperation __binary_op) |
| 178 | { |
| 179 | if (__first != __last) |
| 180 | { |
| 181 | typename iterator_traits<_InputIterator>::value_type __t1(*__first); |
| 182 | *__result = __t1; |
Eric Fiselier | b991975 | 2014-10-27 19:28:20 +0000 | [diff] [blame] | 183 | for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 184 | { |
| 185 | typename iterator_traits<_InputIterator>::value_type __t2(*__first); |
| 186 | *__result = __binary_op(__t2, __t1); |
Howard Hinnant | 1c44f51 | 2013-08-22 18:02:34 +0000 | [diff] [blame] | 187 | __t1 = _VSTD::move(__t2); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 188 | } |
| 189 | } |
| 190 | return __result; |
| 191 | } |
| 192 | |
Howard Hinnant | ebef745 | 2010-05-26 18:53:44 +0000 | [diff] [blame] | 193 | template <class _ForwardIterator, class _Tp> |
| 194 | inline _LIBCPP_INLINE_VISIBILITY |
| 195 | void |
Howard Hinnant | 78b6828 | 2011-10-22 20:59:45 +0000 | [diff] [blame] | 196 | iota(_ForwardIterator __first, _ForwardIterator __last, _Tp __value_) |
Howard Hinnant | ebef745 | 2010-05-26 18:53:44 +0000 | [diff] [blame] | 197 | { |
Eric Fiselier | b991975 | 2014-10-27 19:28:20 +0000 | [diff] [blame] | 198 | for (; __first != __last; ++__first, (void) ++__value_) |
Howard Hinnant | 78b6828 | 2011-10-22 20:59:45 +0000 | [diff] [blame] | 199 | *__first = __value_; |
Howard Hinnant | ebef745 | 2010-05-26 18:53:44 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Marshall Clow | 1c1e91d | 2016-07-26 14:29:45 +0000 | [diff] [blame] | 202 | |
| 203 | #if _LIBCPP_STD_VER > 14 |
| 204 | template <typename _Tp, bool _IsSigned = is_signed<_Tp>::value> struct __abs; |
| 205 | |
| 206 | template <typename _Tp> |
| 207 | struct __abs<_Tp, true> { |
| 208 | _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY |
| 209 | _Tp operator()(_Tp __t) const noexcept { return __t >= 0 ? __t : -__t; } |
| 210 | }; |
| 211 | |
| 212 | template <typename _Tp> |
| 213 | struct __abs<_Tp, false> { |
| 214 | _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY |
| 215 | _Tp operator()(_Tp __t) const noexcept { return __t; } |
| 216 | }; |
| 217 | |
| 218 | |
| 219 | template<class _Tp> |
| 220 | _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY |
| 221 | _Tp __gcd(_Tp __m, _Tp __n) |
| 222 | { |
| 223 | static_assert((!is_signed<_Tp>::value), "" ); |
| 224 | return __n == 0 ? __m : __gcd<_Tp>(__n, __m % __n); |
| 225 | } |
| 226 | |
| 227 | |
| 228 | template<class _Tp, class _Up> |
| 229 | _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY |
| 230 | common_type_t<_Tp,_Up> |
| 231 | gcd(_Tp __m, _Up __n) |
| 232 | { |
| 233 | static_assert((is_integral<_Tp>::value && is_integral<_Up>::value), "Arguments to gcd must be integer types"); |
Marshall Clow | db7fa11 | 2016-11-14 18:22:19 +0000 | [diff] [blame] | 234 | static_assert((!is_same<typename remove_cv<_Tp>::type, bool>::value), "First argument to gcd cannot be bool" ); |
| 235 | static_assert((!is_same<typename remove_cv<_Up>::type, bool>::value), "Second argument to gcd cannot be bool" ); |
Marshall Clow | 1c1e91d | 2016-07-26 14:29:45 +0000 | [diff] [blame] | 236 | using _Rp = common_type_t<_Tp,_Up>; |
| 237 | using _Wp = make_unsigned_t<_Rp>; |
| 238 | return static_cast<_Rp>(__gcd(static_cast<_Wp>(__abs<_Tp>()(__m)), |
| 239 | static_cast<_Wp>(__abs<_Up>()(__n)))); |
| 240 | } |
| 241 | |
| 242 | template<class _Tp, class _Up> |
| 243 | _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY |
| 244 | common_type_t<_Tp,_Up> |
| 245 | lcm(_Tp __m, _Up __n) |
| 246 | { |
| 247 | static_assert((is_integral<_Tp>::value && is_integral<_Up>::value), "Arguments to lcm must be integer types"); |
Marshall Clow | db7fa11 | 2016-11-14 18:22:19 +0000 | [diff] [blame] | 248 | static_assert((!is_same<typename remove_cv<_Tp>::type, bool>::value), "First argument to lcm cannot be bool" ); |
| 249 | static_assert((!is_same<typename remove_cv<_Up>::type, bool>::value), "Second argument to lcm cannot be bool" ); |
Marshall Clow | 1c1e91d | 2016-07-26 14:29:45 +0000 | [diff] [blame] | 250 | if (__m == 0 || __n == 0) |
| 251 | return 0; |
| 252 | |
| 253 | using _Rp = common_type_t<_Tp,_Up>; |
| 254 | _Rp __val1 = __abs<_Tp>()(__m) / gcd(__m,__n); |
| 255 | _Up __val2 = __abs<_Up>()(__n); |
| 256 | _LIBCPP_ASSERT((numeric_limits<_Rp>::max() / __val1 > __val2), "Overflow in lcm"); |
| 257 | return __val1 * __val2; |
| 258 | } |
| 259 | |
| 260 | #endif /* _LIBCPP_STD_VER > 14 */ |
| 261 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 262 | _LIBCPP_END_NAMESPACE_STD |
| 263 | |
| 264 | #endif // _LIBCPP_NUMERIC |