Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libstdc++-v3 / include / bits / stl_numeric.h
blob79706806d50b26e722d043d2e32bc269ecc3384d
1 // Numeric functions implementation -*- C++ -*-
3 // Copyright (C) 2001, 2004 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction. Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License. This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
32 * Copyright (c) 1994
33 * Hewlett-Packard Company
35 * Permission to use, copy, modify, distribute and sell this software
36 * and its documentation for any purpose is hereby granted without fee,
37 * provided that the above copyright notice appear in all copies and
38 * that both that copyright notice and this permission notice appear
39 * in supporting documentation. Hewlett-Packard Company makes no
40 * representations about the suitability of this software for any
41 * purpose. It is provided "as is" without express or implied warranty.
44 * Copyright (c) 1996,1997
45 * Silicon Graphics Computer Systems, Inc.
47 * Permission to use, copy, modify, distribute and sell this software
48 * and its documentation for any purpose is hereby granted without fee,
49 * provided that the above copyright notice appear in all copies and
50 * that both that copyright notice and this permission notice appear
51 * in supporting documentation. Silicon Graphics makes no
52 * representations about the suitability of this software for any
53 * purpose. It is provided "as is" without express or implied warranty.
56 /** @file stl_numeric.h
57 * This is an internal header file, included by other library headers.
58 * You should not attempt to use it directly.
61 #ifndef _STL_NUMERIC_H
62 #define _STL_NUMERIC_H 1
64 #include <debug/debug.h>
66 namespace std
69 /**
70 * @brief Accumulate values in a range.
72 * Accumulates the values in the range [first,last) using operator+(). The
73 * initial value is @a init. The values are processed in order.
75 * @param first Start of range.
76 * @param last End of range.
77 * @param init Starting value to add other values to.
78 * @return The final sum.
80 template<typename _InputIterator, typename _Tp>
81 _Tp
82 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init)
84 // concept requirements
85 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
86 __glibcxx_requires_valid_range(__first, __last);
88 for (; __first != __last; ++__first)
89 __init = __init + *__first;
90 return __init;
93 /**
94 * @brief Accumulate values in a range with operation.
96 * Accumulates the values in the range [first,last) using the function
97 * object @a binary_op. The initial value is @a init. The values are
98 * processed in order.
100 * @param first Start of range.
101 * @param last End of range.
102 * @param init Starting value to add other values to.
103 * @param binary_op Function object to accumulate with.
104 * @return The final sum.
106 template<typename _InputIterator, typename _Tp, typename _BinaryOperation>
108 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init,
109 _BinaryOperation __binary_op)
111 // concept requirements
112 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
113 __glibcxx_requires_valid_range(__first, __last);
115 for (; __first != __last; ++__first)
116 __init = __binary_op(__init, *__first);
117 return __init;
121 * @brief Compute inner product of two ranges.
123 * Starting with an initial value of @a init, multiplies successive
124 * elements from the two ranges and adds each product into the accumulated
125 * value using operator+(). The values in the ranges are processed in
126 * order.
128 * @param first1 Start of range 1.
129 * @param last1 End of range 1.
130 * @param first2 Start of range 2.
131 * @param init Starting value to add other values to.
132 * @return The final inner product.
134 template<typename _InputIterator1, typename _InputIterator2, typename _Tp>
136 inner_product(_InputIterator1 __first1, _InputIterator1 __last1,
137 _InputIterator2 __first2, _Tp __init)
139 // concept requirements
140 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
141 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
142 __glibcxx_requires_valid_range(__first1, __last1);
144 for (; __first1 != __last1; ++__first1, ++__first2)
145 __init = __init + (*__first1 * *__first2);
146 return __init;
150 * @brief Compute inner product of two ranges.
152 * Starting with an initial value of @a init, applies @a binary_op2 to
153 * successive elements from the two ranges and accumulates each result into
154 * the accumulated value using @a binary_op1. The values in the ranges are
155 * processed in order.
157 * @param first1 Start of range 1.
158 * @param last1 End of range 1.
159 * @param first2 Start of range 2.
160 * @param init Starting value to add other values to.
161 * @param binary_op1 Function object to accumulate with.
162 * @param binary_op2 Function object to apply to pairs of input values.
163 * @return The final inner product.
165 template<typename _InputIterator1, typename _InputIterator2, typename _Tp,
166 typename _BinaryOperation1, typename _BinaryOperation2>
168 inner_product(_InputIterator1 __first1, _InputIterator1 __last1,
169 _InputIterator2 __first2, _Tp __init,
170 _BinaryOperation1 __binary_op1,
171 _BinaryOperation2 __binary_op2)
173 // concept requirements
174 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
175 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
176 __glibcxx_requires_valid_range(__first1, __last1);
178 for (; __first1 != __last1; ++__first1, ++__first2)
179 __init = __binary_op1(__init, __binary_op2(*__first1, *__first2));
180 return __init;
184 * @brief Return list of partial sums
186 * Accumulates the values in the range [first,last) using operator+().
187 * As each successive input value is added into the total, that partial sum
188 * is written to @a result. Therefore, the first value in result is the
189 * first value of the input, the second value in result is the sum of the
190 * first and second input values, and so on.
192 * @param first Start of input range.
193 * @param last End of input range.
194 * @param result Output to write sums to.
195 * @return Iterator pointing just beyond the values written to result.
197 template<typename _InputIterator, typename _OutputIterator>
198 _OutputIterator
199 partial_sum(_InputIterator __first, _InputIterator __last,
200 _OutputIterator __result)
202 typedef typename iterator_traits<_InputIterator>::value_type _ValueType;
204 // concept requirements
205 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
206 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
207 _ValueType>)
208 __glibcxx_requires_valid_range(__first, __last);
210 if (__first == __last)
211 return __result;
212 _ValueType __value = *__first;
213 *__result = __value;
214 while (++__first != __last)
216 __value = __value + *__first;
217 *++__result = __value;
219 return ++__result;
223 * @brief Return list of partial sums
225 * Accumulates the values in the range [first,last) using operator+().
226 * As each successive input value is added into the total, that partial sum
227 * is written to @a result. Therefore, the first value in result is the
228 * first value of the input, the second value in result is the sum of the
229 * first and second input values, and so on.
231 * @param first Start of input range.
232 * @param last End of input range.
233 * @param result Output to write sums to.
234 * @return Iterator pointing just beyond the values written to result.
236 template<typename _InputIterator, typename _OutputIterator,
237 typename _BinaryOperation>
238 _OutputIterator
239 partial_sum(_InputIterator __first, _InputIterator __last,
240 _OutputIterator __result, _BinaryOperation __binary_op)
242 typedef typename iterator_traits<_InputIterator>::value_type _ValueType;
244 // concept requirements
245 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
246 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
247 _ValueType>)
248 __glibcxx_requires_valid_range(__first, __last);
250 if (__first == __last)
251 return __result;
252 _ValueType __value = *__first;
253 *__result = __value;
254 while (++__first != __last)
256 __value = __binary_op(__value, *__first);
257 *++__result = __value;
259 return ++__result;
263 * @brief Return differences between adjacent values.
265 * Computes the difference between adjacent values in the range
266 * [first,last) using operator-() and writes the result to @a result.
268 * @param first Start of input range.
269 * @param last End of input range.
270 * @param result Output to write sums to.
271 * @return Iterator pointing just beyond the values written to result.
273 template<typename _InputIterator, typename _OutputIterator>
274 _OutputIterator
275 adjacent_difference(_InputIterator __first,
276 _InputIterator __last, _OutputIterator __result)
278 typedef typename iterator_traits<_InputIterator>::value_type _ValueType;
280 // concept requirements
281 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
282 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
283 _ValueType>)
284 __glibcxx_requires_valid_range(__first, __last);
286 if (__first == __last)
287 return __result;
288 _ValueType __value = *__first;
289 *__result = __value;
290 while (++__first != __last)
292 _ValueType __tmp = *__first;
293 *++__result = __tmp - __value;
294 __value = __tmp;
296 return ++__result;
300 * @brief Return differences between adjacent values.
302 * Computes the difference between adjacent values in the range
303 * [first,last) using the function object @a binary_op and writes the
304 * result to @a result.
306 * @param first Start of input range.
307 * @param last End of input range.
308 * @param result Output to write sums to.
309 * @return Iterator pointing just beyond the values written to result.
311 template<typename _InputIterator, typename _OutputIterator,
312 typename _BinaryOperation>
313 _OutputIterator
314 adjacent_difference(_InputIterator __first, _InputIterator __last,
315 _OutputIterator __result, _BinaryOperation __binary_op)
317 typedef typename iterator_traits<_InputIterator>::value_type _ValueType;
319 // concept requirements
320 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
321 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
322 _ValueType>)
323 __glibcxx_requires_valid_range(__first, __last);
325 if (__first == __last)
326 return __result;
327 _ValueType __value = *__first;
328 *__result = __value;
329 while (++__first != __last)
331 _ValueType __tmp = *__first;
332 *++__result = __binary_op(__tmp, __value);
333 __value = __tmp;
335 return ++__result;
338 } // namespace std
340 #endif /* _STL_NUMERIC_H */