blob: 4e68239d059e353eb962a0cc05075564bad76440 [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
Marshall Clow0175dfd2017-06-14 04:48:45 +000028template<class InputIterator>
29 typename iterator_traits<InputIterator>::value_type
30 reduce(InputIterator first, InputIterator last); // C++17
31
32template<class InputIterator, class T>
33 T
34 reduce(InputIterator first, InputIterator last, T init); // C++17
35
36template<class InputIterator, class T, class BinaryOperation>
37 T
38 reduce(InputIterator first, InputIterator last, T init, BinaryOperation binary_op); // C++17
39
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000040template <class InputIterator1, class InputIterator2, class T>
41 T
42 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, T init);
43
44template <class InputIterator1, class InputIterator2, class T, class BinaryOperation1, class BinaryOperation2>
45 T
46 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2,
47 T init, BinaryOperation1 binary_op1, BinaryOperation2 binary_op2);
48
Marshall Clow0175dfd2017-06-14 04:48:45 +000049
50template<class InputIterator1, class InputIterator2, class T>
51 T
52 transform_reduce(InputIterator1 first1, InputIterator1 last1,
53 InputIterator2 first2, T init); // C++17
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +000054
Marshall Clow0175dfd2017-06-14 04:48:45 +000055template<class InputIterator1, class InputIterator2, class T, class BinaryOperation1, class BinaryOperation2>
56 T
57 transform_reduce(InputIterator1 first1, InputIterator1 last1,
58 InputIterator2 first2, T init,
59 BinaryOperation1 binary_op1, BinaryOperation2 binary_op2); // C++17
60
61template<class InputIterator, class T, class BinaryOperation, class UnaryOperation>
62 T
63 transform_reduce(InputIterator first, InputIterator last, T init,
64 BinaryOperation binary_op, UnaryOperation unary_op); // C++17
65
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000066template <class InputIterator, class OutputIterator>
67 OutputIterator
68 partial_sum(InputIterator first, InputIterator last, OutputIterator result);
69
70template <class InputIterator, class OutputIterator, class BinaryOperation>
71 OutputIterator
72 partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
73
Marshall Clowfb97c442017-06-10 02:22:13 +000074template<class InputIterator, class OutputIterator, class T>
75 OutputIterator
76 exclusive_scan(InputIterator first, InputIterator last,
77 OutputIterator result, T init); // C++17
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +000078
Marshall Clowfb97c442017-06-10 02:22:13 +000079template<class InputIterator, class OutputIterator, class T, class BinaryOperation>
80 OutputIterator
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +000081 exclusive_scan(InputIterator first, InputIterator last,
Marshall Clowfb97c442017-06-10 02:22:13 +000082 OutputIterator result, T init, BinaryOperation binary_op); // C++17
83
Marshall Clow3477ae42017-06-23 05:12:42 +000084template<class InputIterator, class OutputIterator>
85 OutputIterator
86 inclusive_scan(InputIterator first, InputIterator last, OutputIterator result); // C++17
87
88template<class InputIterator, class OutputIterator, class BinaryOperation>
89 OutputIterator
90 inclusive_scan(InputIterator first, InputIterator last,
91 OutputIterator result, BinaryOperation binary_op); // C++17
92
93template<class InputIterator, class OutputIterator, class BinaryOperation, class T>
94 OutputIterator
95 inclusive_scan(InputIterator first, InputIterator last,
96 OutputIterator result, BinaryOperation binary_op, T init); // C++17
97
Marshall Clowfb97c442017-06-10 02:22:13 +000098template<class InputIterator, class OutputIterator, class T,
99 class BinaryOperation, class UnaryOperation>
100 OutputIterator
101 transform_exclusive_scan(InputIterator first, InputIterator last,
102 OutputIterator result, T init,
103 BinaryOperation binary_op, UnaryOperation unary_op); // C++17
104
Marshall Clow3477ae42017-06-23 05:12:42 +0000105template<class InputIterator, class OutputIterator,
106 class BinaryOperation, class UnaryOperation>
Louis Dionne2580fdb2018-08-03 22:36:53 +0000107 OutputIterator
108 transform_inclusive_scan(InputIterator first, InputIterator last,
Marshall Clow3477ae42017-06-23 05:12:42 +0000109 OutputIterator result,
110 BinaryOperation binary_op, UnaryOperation unary_op); // C++17
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000111
Marshall Clow3477ae42017-06-23 05:12:42 +0000112template<class InputIterator, class OutputIterator,
113 class BinaryOperation, class UnaryOperation, class T>
Louis Dionne2580fdb2018-08-03 22:36:53 +0000114 OutputIterator
115 transform_inclusive_scan(InputIterator first, InputIterator last,
Marshall Clow3477ae42017-06-23 05:12:42 +0000116 OutputIterator result,
117 BinaryOperation binary_op, UnaryOperation unary_op,
118 T init); // C++17
119
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000120template <class InputIterator, class OutputIterator>
121 OutputIterator
122 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result);
123
124template <class InputIterator, class OutputIterator, class BinaryOperation>
125 OutputIterator
126 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
127
Howard Hinnantebef7452010-05-26 18:53:44 +0000128template <class ForwardIterator, class T>
129 void iota(ForwardIterator first, ForwardIterator last, T value);
130
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000131template <class M, class N>
132 constexpr common_type_t<M,N> gcd(M m, N n); // C++17
133
134template <class M, class N>
135 constexpr common_type_t<M,N> lcm(M m, N n); // C++17
136
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000137} // std
138
139*/
140
141#include <__config>
142#include <iterator>
Eric Fiselier34da9b52017-02-08 00:14:13 +0000143#include <limits> // for numeric_limits
Marshall Clowfb97c442017-06-10 02:22:13 +0000144#include <functional>
Marshall Clowe3973fd2018-09-12 19:41:40 +0000145#include <version>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000146
Howard Hinnant08e17472011-10-17 20:05:10 +0000147#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000148#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000149#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000150
Eric Fiselier018a3d52017-05-31 22:07:49 +0000151_LIBCPP_PUSH_MACROS
152#include <__undef_macros>
153
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000154_LIBCPP_BEGIN_NAMESPACE_STD
155
156template <class _InputIterator, class _Tp>
157inline _LIBCPP_INLINE_VISIBILITY
158_Tp
159accumulate(_InputIterator __first, _InputIterator __last, _Tp __init)
160{
161 for (; __first != __last; ++__first)
162 __init = __init + *__first;
163 return __init;
164}
165
166template <class _InputIterator, class _Tp, class _BinaryOperation>
167inline _LIBCPP_INLINE_VISIBILITY
168_Tp
169accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, _BinaryOperation __binary_op)
170{
171 for (; __first != __last; ++__first)
172 __init = __binary_op(__init, *__first);
173 return __init;
174}
175
Marshall Clow0175dfd2017-06-14 04:48:45 +0000176#if _LIBCPP_STD_VER > 14
177template <class _InputIterator, class _Tp, class _BinaryOp>
178inline _LIBCPP_INLINE_VISIBILITY
179_Tp
180reduce(_InputIterator __first, _InputIterator __last, _Tp __init, _BinaryOp __b)
181{
182 for (; __first != __last; ++__first)
183 __init = __b(__init, *__first);
184 return __init;
185}
186
187template <class _InputIterator, class _Tp>
188inline _LIBCPP_INLINE_VISIBILITY
189_Tp
190reduce(_InputIterator __first, _InputIterator __last, _Tp __init)
191{
192 return _VSTD::reduce(__first, __last, __init, _VSTD::plus<>());
193}
194
195template <class _InputIterator>
196inline _LIBCPP_INLINE_VISIBILITY
197typename iterator_traits<_InputIterator>::value_type
198reduce(_InputIterator __first, _InputIterator __last)
199{
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000200 return _VSTD::reduce(__first, __last,
Marshall Clow0175dfd2017-06-14 04:48:45 +0000201 typename iterator_traits<_InputIterator>::value_type{});
202}
203#endif
204
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000205template <class _InputIterator1, class _InputIterator2, class _Tp>
206inline _LIBCPP_INLINE_VISIBILITY
207_Tp
208inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _Tp __init)
209{
Eric Fiselierb9919752014-10-27 19:28:20 +0000210 for (; __first1 != __last1; ++__first1, (void) ++__first2)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000211 __init = __init + *__first1 * *__first2;
212 return __init;
213}
214
215template <class _InputIterator1, class _InputIterator2, class _Tp, class _BinaryOperation1, class _BinaryOperation2>
216inline _LIBCPP_INLINE_VISIBILITY
217_Tp
218inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2,
219 _Tp __init, _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary_op2)
220{
Eric Fiselierb9919752014-10-27 19:28:20 +0000221 for (; __first1 != __last1; ++__first1, (void) ++__first2)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000222 __init = __binary_op1(__init, __binary_op2(*__first1, *__first2));
223 return __init;
224}
225
Marshall Clow0175dfd2017-06-14 04:48:45 +0000226#if _LIBCPP_STD_VER > 14
227template <class _InputIterator, class _Tp, class _BinaryOp, class _UnaryOp>
228inline _LIBCPP_INLINE_VISIBILITY
229_Tp
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000230transform_reduce(_InputIterator __first, _InputIterator __last,
Marshall Clow0175dfd2017-06-14 04:48:45 +0000231 _Tp __init, _BinaryOp __b, _UnaryOp __u)
232{
233 for (; __first != __last; ++__first)
234 __init = __b(__init, __u(*__first));
235 return __init;
236}
237
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000238template <class _InputIterator1, class _InputIterator2,
Marshall Clow0175dfd2017-06-14 04:48:45 +0000239 class _Tp, class _BinaryOp1, class _BinaryOp2>
240inline _LIBCPP_INLINE_VISIBILITY
241_Tp
242transform_reduce(_InputIterator1 __first1, _InputIterator1 __last1,
243 _InputIterator2 __first2, _Tp __init, _BinaryOp1 __b1, _BinaryOp2 __b2)
244{
245 for (; __first1 != __last1; ++__first1, (void) ++__first2)
246 __init = __b1(__init, __b2(*__first1, *__first2));
247 return __init;
248}
249
250template <class _InputIterator1, class _InputIterator2, class _Tp>
251inline _LIBCPP_INLINE_VISIBILITY
252_Tp
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000253transform_reduce(_InputIterator1 __first1, _InputIterator1 __last1,
Marshall Clow0175dfd2017-06-14 04:48:45 +0000254 _InputIterator2 __first2, _Tp __init)
255{
Billy Robert O'Neal III70a8aae2018-01-05 01:31:57 +0000256 return _VSTD::transform_reduce(__first1, __last1, __first2, _VSTD::move(__init),
Marshall Clow0175dfd2017-06-14 04:48:45 +0000257 _VSTD::plus<>(), _VSTD::multiplies<>());
258}
259#endif
260
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000261template <class _InputIterator, class _OutputIterator>
262inline _LIBCPP_INLINE_VISIBILITY
263_OutputIterator
264partial_sum(_InputIterator __first, _InputIterator __last, _OutputIterator __result)
265{
266 if (__first != __last)
267 {
268 typename iterator_traits<_InputIterator>::value_type __t(*__first);
269 *__result = __t;
Eric Fiselierb9919752014-10-27 19:28:20 +0000270 for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000271 {
272 __t = __t + *__first;
273 *__result = __t;
274 }
275 }
276 return __result;
277}
278
279template <class _InputIterator, class _OutputIterator, class _BinaryOperation>
280inline _LIBCPP_INLINE_VISIBILITY
281_OutputIterator
282partial_sum(_InputIterator __first, _InputIterator __last, _OutputIterator __result,
283 _BinaryOperation __binary_op)
284{
285 if (__first != __last)
286 {
287 typename iterator_traits<_InputIterator>::value_type __t(*__first);
288 *__result = __t;
Eric Fiselierb9919752014-10-27 19:28:20 +0000289 for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000290 {
291 __t = __binary_op(__t, *__first);
292 *__result = __t;
293 }
294 }
295 return __result;
296}
297
Marshall Clowfb97c442017-06-10 02:22:13 +0000298#if _LIBCPP_STD_VER > 14
299template <class _InputIterator, class _OutputIterator, class _Tp, class _BinaryOp>
300inline _LIBCPP_INLINE_VISIBILITY
301_OutputIterator
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000302exclusive_scan(_InputIterator __first, _InputIterator __last,
Marshall Clowfb97c442017-06-10 02:22:13 +0000303 _OutputIterator __result, _Tp __init, _BinaryOp __b)
304{
305 if (__first != __last)
306 {
307 _Tp __saved = __init;
308 do
309 {
310 __init = __b(__init, *__first);
311 *__result = __saved;
312 __saved = __init;
313 ++__result;
314 } while (++__first != __last);
315 }
316 return __result;
317}
318
319template <class _InputIterator, class _OutputIterator, class _Tp>
320inline _LIBCPP_INLINE_VISIBILITY
321_OutputIterator
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000322exclusive_scan(_InputIterator __first, _InputIterator __last,
Marshall Clowfb97c442017-06-10 02:22:13 +0000323 _OutputIterator __result, _Tp __init)
324{
325 return _VSTD::exclusive_scan(__first, __last, __result, __init, _VSTD::plus<>());
326}
327
Marshall Clow3477ae42017-06-23 05:12:42 +0000328template <class _InputIterator, class _OutputIterator, class _Tp, class _BinaryOp>
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000329_OutputIterator inclusive_scan(_InputIterator __first, _InputIterator __last,
Marshall Clow3477ae42017-06-23 05:12:42 +0000330 _OutputIterator __result, _BinaryOp __b, _Tp __init)
331{
332 for (; __first != __last; ++__first, (void) ++__result) {
333 __init = __b(__init, *__first);
334 *__result = __init;
335 }
336 return __result;
337}
338
339template <class _InputIterator, class _OutputIterator, class _BinaryOp>
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000340_OutputIterator inclusive_scan(_InputIterator __first, _InputIterator __last,
Marshall Clow3477ae42017-06-23 05:12:42 +0000341 _OutputIterator __result, _BinaryOp __b)
342{
343 if (__first != __last) {
344 typename std::iterator_traits<_InputIterator>::value_type __init = *__first;
345 *__result++ = __init;
346 if (++__first != __last)
347 return _VSTD::inclusive_scan(__first, __last, __result, __b, __init);
348 }
349
350 return __result;
351}
352
353template <class _InputIterator, class _OutputIterator>
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000354_OutputIterator inclusive_scan(_InputIterator __first, _InputIterator __last,
Marshall Clow3477ae42017-06-23 05:12:42 +0000355 _OutputIterator __result)
356{
357 return _VSTD::inclusive_scan(__first, __last, __result, std::plus<>());
358}
359
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000360template <class _InputIterator, class _OutputIterator, class _Tp,
Marshall Clowfb97c442017-06-10 02:22:13 +0000361 class _BinaryOp, class _UnaryOp>
362inline _LIBCPP_INLINE_VISIBILITY
363_OutputIterator
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000364transform_exclusive_scan(_InputIterator __first, _InputIterator __last,
Marshall Clowfb97c442017-06-10 02:22:13 +0000365 _OutputIterator __result, _Tp __init,
366 _BinaryOp __b, _UnaryOp __u)
367{
368 if (__first != __last)
369 {
370 _Tp __saved = __init;
371 do
372 {
373 __init = __b(__init, __u(*__first));
374 *__result = __saved;
375 __saved = __init;
376 ++__result;
377 } while (++__first != __last);
378 }
379 return __result;
380}
Marshall Clow3477ae42017-06-23 05:12:42 +0000381
382template <class _InputIterator, class _OutputIterator, class _Tp, class _BinaryOp, class _UnaryOp>
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000383_OutputIterator transform_inclusive_scan(_InputIterator __first, _InputIterator __last,
Marshall Clow3477ae42017-06-23 05:12:42 +0000384 _OutputIterator __result, _BinaryOp __b, _UnaryOp __u, _Tp __init)
385{
386 for (; __first != __last; ++__first, (void) ++__result) {
387 __init = __b(__init, __u(*__first));
388 *__result = __init;
389 }
390
391 return __result;
392}
393
394template <class _InputIterator, class _OutputIterator, class _BinaryOp, class _UnaryOp>
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000395_OutputIterator transform_inclusive_scan(_InputIterator __first, _InputIterator __last,
Marshall Clow3477ae42017-06-23 05:12:42 +0000396 _OutputIterator __result, _BinaryOp __b, _UnaryOp __u)
397{
398 if (__first != __last) {
399 typename std::iterator_traits<_InputIterator>::value_type __init = __u(*__first);
400 *__result++ = __init;
401 if (++__first != __last)
402 return _VSTD::transform_inclusive_scan(__first, __last, __result, __b, __u, __init);
403 }
Billy Robert O'Neal IIIb68e9c12018-01-05 01:31:55 +0000404
Marshall Clow3477ae42017-06-23 05:12:42 +0000405 return __result;
406}
Marshall Clowfb97c442017-06-10 02:22:13 +0000407#endif
408
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000409template <class _InputIterator, class _OutputIterator>
410inline _LIBCPP_INLINE_VISIBILITY
411_OutputIterator
412adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterator __result)
413{
414 if (__first != __last)
415 {
416 typename iterator_traits<_InputIterator>::value_type __t1(*__first);
417 *__result = __t1;
Eric Fiselierb9919752014-10-27 19:28:20 +0000418 for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000419 {
420 typename iterator_traits<_InputIterator>::value_type __t2(*__first);
421 *__result = __t2 - __t1;
Howard Hinnant1c44f512013-08-22 18:02:34 +0000422 __t1 = _VSTD::move(__t2);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000423 }
424 }
425 return __result;
426}
427
428template <class _InputIterator, class _OutputIterator, class _BinaryOperation>
429inline _LIBCPP_INLINE_VISIBILITY
430_OutputIterator
431adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterator __result,
432 _BinaryOperation __binary_op)
433{
434 if (__first != __last)
435 {
436 typename iterator_traits<_InputIterator>::value_type __t1(*__first);
437 *__result = __t1;
Eric Fiselierb9919752014-10-27 19:28:20 +0000438 for (++__first, (void) ++__result; __first != __last; ++__first, (void) ++__result)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000439 {
440 typename iterator_traits<_InputIterator>::value_type __t2(*__first);
441 *__result = __binary_op(__t2, __t1);
Howard Hinnant1c44f512013-08-22 18:02:34 +0000442 __t1 = _VSTD::move(__t2);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000443 }
444 }
445 return __result;
446}
447
Howard Hinnantebef7452010-05-26 18:53:44 +0000448template <class _ForwardIterator, class _Tp>
449inline _LIBCPP_INLINE_VISIBILITY
450void
Howard Hinnant78b68282011-10-22 20:59:45 +0000451iota(_ForwardIterator __first, _ForwardIterator __last, _Tp __value_)
Howard Hinnantebef7452010-05-26 18:53:44 +0000452{
Eric Fiselierb9919752014-10-27 19:28:20 +0000453 for (; __first != __last; ++__first, (void) ++__value_)
Howard Hinnant78b68282011-10-22 20:59:45 +0000454 *__first = __value_;
Howard Hinnantebef7452010-05-26 18:53:44 +0000455}
456
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000457
458#if _LIBCPP_STD_VER > 14
Marshall Clowebf66a32017-02-10 20:49:08 +0000459template <typename _Result, typename _Source, bool _IsSigned = is_signed<_Source>::value> struct __abs;
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000460
Marshall Clowebf66a32017-02-10 20:49:08 +0000461template <typename _Result, typename _Source>
462struct __abs<_Result, _Source, true> {
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000463 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
Marshall Clowebf66a32017-02-10 20:49:08 +0000464 _Result operator()(_Source __t) const noexcept
465 {
466 if (__t >= 0) return __t;
467 if (__t == numeric_limits<_Source>::min()) return -static_cast<_Result>(__t);
468 return -__t;
469 }
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000470};
471
Marshall Clowebf66a32017-02-10 20:49:08 +0000472template <typename _Result, typename _Source>
473struct __abs<_Result, _Source, false> {
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000474 _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
Marshall Clowebf66a32017-02-10 20:49:08 +0000475 _Result operator()(_Source __t) const noexcept { return __t; }
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000476};
477
478
479template<class _Tp>
Eric Fiselier91970082017-05-09 00:00:00 +0000480_LIBCPP_CONSTEXPR _LIBCPP_HIDDEN
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000481_Tp __gcd(_Tp __m, _Tp __n)
482{
Marshall Clowebf66a32017-02-10 20:49:08 +0000483 static_assert((!is_signed<_Tp>::value), "");
Eric Fiselier91970082017-05-09 00:00:00 +0000484 return __n == 0 ? __m : _VSTD::__gcd<_Tp>(__n, __m % __n);
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000485}
486
487
488template<class _Tp, class _Up>
489_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
490common_type_t<_Tp,_Up>
491gcd(_Tp __m, _Up __n)
492{
493 static_assert((is_integral<_Tp>::value && is_integral<_Up>::value), "Arguments to gcd must be integer types");
Marshall Clowdb7fa112016-11-14 18:22:19 +0000494 static_assert((!is_same<typename remove_cv<_Tp>::type, bool>::value), "First argument to gcd cannot be bool" );
495 static_assert((!is_same<typename remove_cv<_Up>::type, bool>::value), "Second argument to gcd cannot be bool" );
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000496 using _Rp = common_type_t<_Tp,_Up>;
497 using _Wp = make_unsigned_t<_Rp>;
Eric Fiselier91970082017-05-09 00:00:00 +0000498 return static_cast<_Rp>(_VSTD::__gcd(
499 static_cast<_Wp>(__abs<_Rp, _Tp>()(__m)),
500 static_cast<_Wp>(__abs<_Rp, _Up>()(__n))));
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000501}
502
503template<class _Tp, class _Up>
504_LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY
505common_type_t<_Tp,_Up>
506lcm(_Tp __m, _Up __n)
507{
508 static_assert((is_integral<_Tp>::value && is_integral<_Up>::value), "Arguments to lcm must be integer types");
Marshall Clowdb7fa112016-11-14 18:22:19 +0000509 static_assert((!is_same<typename remove_cv<_Tp>::type, bool>::value), "First argument to lcm cannot be bool" );
510 static_assert((!is_same<typename remove_cv<_Up>::type, bool>::value), "Second argument to lcm cannot be bool" );
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000511 if (__m == 0 || __n == 0)
512 return 0;
513
514 using _Rp = common_type_t<_Tp,_Up>;
Eric Fiselier91970082017-05-09 00:00:00 +0000515 _Rp __val1 = __abs<_Rp, _Tp>()(__m) / _VSTD::gcd(__m, __n);
Marshall Clowebf66a32017-02-10 20:49:08 +0000516 _Rp __val2 = __abs<_Rp, _Up>()(__n);
Marshall Clow1c1e91d2016-07-26 14:29:45 +0000517 _LIBCPP_ASSERT((numeric_limits<_Rp>::max() / __val1 > __val2), "Overflow in lcm");
518 return __val1 * __val2;
519}
520
521#endif /* _LIBCPP_STD_VER > 14 */
522
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000523_LIBCPP_END_NAMESPACE_STD
524
Eric Fiselier018a3d52017-05-31 22:07:49 +0000525_LIBCPP_POP_MACROS
526
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000527#endif // _LIBCPP_NUMERIC