blob: 1643d6400d12013fdd82d4b75555499c64096d58 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===---------------------------- numeric ---------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_NUMERIC
12#define _LIBCPP_NUMERIC
13
14/*
15 numeric synopsis
16
17namespace std
18{
19
20template <class InputIterator, class T>
21 T
22 accumulate(InputIterator first, InputIterator last, T init);
23
24template <class InputIterator, class T, class BinaryOperation>
25 T
26 accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op);
27
28template <class InputIterator1, class InputIterator2, class T>
29 T
30 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, T init);
31
32template <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
37template <class InputIterator, class OutputIterator>
38 OutputIterator
39 partial_sum(InputIterator first, InputIterator last, OutputIterator result);
40
41template <class InputIterator, class OutputIterator, class BinaryOperation>
42 OutputIterator
43 partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
44
45template <class InputIterator, class OutputIterator>
46 OutputIterator
47 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result);
48
49template <class InputIterator, class OutputIterator, class BinaryOperation>
50 OutputIterator
51 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
52
Howard Hinnantebef7452010-05-26 18:53:44 +000053template <class ForwardIterator, class T>
54 void iota(ForwardIterator first, ForwardIterator last, T value);
55
Marshall Clow1c1e91d2016-07-26 14:29:45 +000056template <class M, class N>
57 constexpr common_type_t<M,N> gcd(M m, N n); // C++17
58
59template <class M, class N>
60 constexpr common_type_t<M,N> lcm(M m, N n); // C++17
61
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000062} // std
63
64*/
65
66#include <__config>
67#include <iterator>
68
Howard Hinnant08e17472011-10-17 20:05:10 +000069#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000070#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +000071#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000072
73_LIBCPP_BEGIN_NAMESPACE_STD
74
75template <class _InputIterator, class _Tp>
76inline _LIBCPP_INLINE_VISIBILITY
77_Tp
78accumulate(_InputIterator __first, _InputIterator __last, _Tp __init)
79{
80 for (; __first != __last; ++__first)
81 __init = __init + *__first;
82 return __init;
83}
84
85template <class _InputIterator, class _Tp, class _BinaryOperation>
86inline _LIBCPP_INLINE_VISIBILITY
87_Tp
88accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, _BinaryOperation __binary_op)
89{
90 for (; __first != __last; ++__first)
91 __init = __binary_op(__init, *__first);
92 return __init;
93}
94
95template <class _InputIterator1, class _InputIterator2, class _Tp>
96inline _LIBCPP_INLINE_VISIBILITY
97_Tp
98inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _Tp __init)
99{
Eric Fiselierb9919752014-10-27 19:28:20 +0000100 for (; __first1 != __last1; ++__first1, (void) ++__first2)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000101 __init = __init + *__first1 * *__first2;
102 return __init;
103}
104
105template <class _InputIterator1, class _InputIterator2, class _Tp, class _BinaryOperation1, class _BinaryOperation2>
106inline _LIBCPP_INLINE_VISIBILITY
107_Tp
108inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2,
109 _Tp __init, _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary_op2)
110{
Eric Fiselierb9919752014-10-27 19:28:20 +0000111 for (; __first1 != __last1; ++__first1, (void) ++__first2)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000112 __init = __binary_op1(__init, __binary_op2(*__first1, *__first2));
113 return __init;
114}
115
116template <class _InputIterator, class _OutputIterator>
117inline _LIBCPP_INLINE_VISIBILITY
118_OutputIterator
119partial_sum(_InputIterator __first, _InputIterator __last, _OutputIterator __result)
120{
121 if (__first != __last)
122 {
123 typename iterator_traits<_InputIterator>::value_type __t(*__first);
124 *__result = __t;
Eric Fiselierb9919752014-10-27 19:28:20 +0000125 for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000126 {
127 __t = __t + *__first;
128 *__result = __t;
129 }
130 }
131 return __result;
132}
133
134template <class _InputIterator, class _OutputIterator, class _BinaryOperation>
135inline _LIBCPP_INLINE_VISIBILITY
136_OutputIterator
137partial_sum(_InputIterator __first, _InputIterator __last, _OutputIterator __result,
138 _BinaryOperation __binary_op)
139{
140 if (__first != __last)
141 {
142 typename iterator_traits<_InputIterator>::value_type __t(*__first);
143 *__result = __t;
Eric Fiselierb9919752014-10-27 19:28:20 +0000144 for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000145 {
146 __t = __binary_op(__t, *__first);
147 *__result = __t;
148 }
149 }
150 return __result;
151}
152
153template <class _InputIterator, class _OutputIterator>
154inline _LIBCPP_INLINE_VISIBILITY
155_OutputIterator
156adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterator __result)
157{
158 if (__first != __last)
159 {
160 typename iterator_traits<_InputIterator>::value_type __t1(*__first);
161 *__result = __t1;
Eric Fiselierb9919752014-10-27 19:28:20 +0000162 for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000163 {
164 typename iterator_traits<_InputIterator>::value_type __t2(*__first);
165 *__result = __t2 - __t1;
Howard Hinnant1c44f512013-08-22 18:02:34 +0000166 __t1 = _VSTD::move(__t2);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000167 }
168 }
169 return __result;
170}
171
172template <class _InputIterator, class _OutputIterator, class _BinaryOperation>
173inline _LIBCPP_INLINE_VISIBILITY
174_OutputIterator
175adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterator __result,
176 _BinaryOperation __binary_op)
177{
178 if (__first != __last)
179 {
180 typename iterator_traits<_InputIterator>::value_type __t1(*__first);
181 *__result = __t1;
Eric Fiselierb9919752014-10-27 19:28:20 +0000182 for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000183 {
184 typename iterator_traits<_InputIterator>::value_type __t2(*__first);
185 *__result = __binary_op(__t2, __t1);
Howard Hinnant1c44f512013-08-22 18:02:34 +0000186 __t1 = _VSTD::move(__t2);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000187 }
188 }
189 return __result;
190}
191
Howard Hinnantebef7452010-05-26 18:53:44 +0000192template <class _ForwardIterator, class _Tp>
193inline _LIBCPP_INLINE_VISIBILITY
194void
Howard Hinnant78b68282011-10-22 20:59:45 +0000195iota(_ForwardIterator __first, _ForwardIterator __last, _Tp __value_)
Howard Hinnantebef7452010-05-26 18:53:44 +0000196{
Eric Fiselierb9919752014-10-27 19:28:20 +0000197 for (; __first != __last; ++__first, (void) ++__value_)
Howard Hinnant78b68282011-10-22 20:59:45 +0000198 *__first = __value_;
Howard Hinnantebef7452010-05-26 18:53:44 +0000199}
200
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000201
202#if _LIBCPP_STD_VER > 14
203template <typename _Tp, bool _IsSigned = is_signed<_Tp>::value> struct __abs;
204
205template <typename _Tp>
206struct __abs<_Tp, true> {
207 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
208 _Tp operator()(_Tp __t) const noexcept { return __t >= 0 ? __t : -__t; }
209};
210
211template <typename _Tp>
212struct __abs<_Tp, false> {
213 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
214 _Tp operator()(_Tp __t) const noexcept { return __t; }
215};
216
217
218template<class _Tp>
219_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
220_Tp __gcd(_Tp __m, _Tp __n)
221{
222 static_assert((!is_signed<_Tp>::value), "" );
223 return __n == 0 ? __m : __gcd<_Tp>(__n, __m % __n);
224}
225
226
227template<class _Tp, class _Up>
228_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
229common_type_t<_Tp,_Up>
230gcd(_Tp __m, _Up __n)
231{
232 static_assert((is_integral<_Tp>::value && is_integral<_Up>::value), "Arguments to gcd must be integer types");
233 using _Rp = common_type_t<_Tp,_Up>;
234 using _Wp = make_unsigned_t<_Rp>;
235 return static_cast<_Rp>(__gcd(static_cast<_Wp>(__abs<_Tp>()(__m)),
236 static_cast<_Wp>(__abs<_Up>()(__n))));
237}
238
239template<class _Tp, class _Up>
240_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
241common_type_t<_Tp,_Up>
242lcm(_Tp __m, _Up __n)
243{
244 static_assert((is_integral<_Tp>::value && is_integral<_Up>::value), "Arguments to lcm must be integer types");
245 if (__m == 0 || __n == 0)
246 return 0;
247
248 using _Rp = common_type_t<_Tp,_Up>;
249 _Rp __val1 = __abs<_Tp>()(__m) / gcd(__m,__n);
250 _Up __val2 = __abs<_Up>()(__n);
251 _LIBCPP_ASSERT((numeric_limits<_Rp>::max() / __val1 > __val2), "Overflow in lcm");
252 return __val1 * __val2;
253}
254
255#endif /* _LIBCPP_STD_VER > 14 */
256
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000257_LIBCPP_END_NAMESPACE_STD
258
259#endif // _LIBCPP_NUMERIC