3 // Copyright (C) 2008-2020 Free Software Foundation, Inc.
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 3, or (at your option)
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 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file include/ratio
26 * This is a Standard C++ Library header.
30 #ifndef _GLIBCXX_RATIO
31 #define _GLIBCXX_RATIO 1
33 #pragma GCC system_header
35 #if __cplusplus < 201103L
36 # include <bits/c++0x_warning.h>
39 #include <type_traits>
40 #include <cstdint> // intmax_t, uintmax_t
42 namespace std _GLIBCXX_VISIBILITY(default)
44 _GLIBCXX_BEGIN_NAMESPACE_VERSION
47 * @defgroup ratio Rational Arithmetic
50 * Compile time representation of finite rational numbers.
54 /// @cond undocumented
56 template<intmax_t _Pn>
58 : integral_constant<intmax_t, (_Pn < 0) ? -1 : 1>
61 template<intmax_t _Pn>
63 : integral_constant<intmax_t, _Pn * __static_sign<_Pn>::value>
66 template<intmax_t _Pn, intmax_t _Qn>
68 : __static_gcd<_Qn, (_Pn % _Qn)>
71 template<intmax_t _Pn>
72 struct __static_gcd<_Pn, 0>
73 : integral_constant<intmax_t, __static_abs<_Pn>::value>
76 template<intmax_t _Qn>
77 struct __static_gcd<0, _Qn>
78 : integral_constant<intmax_t, __static_abs<_Qn>::value>
81 // Let c = 2^(half # of bits in an intmax_t)
82 // then we find a1, a0, b1, b0 s.t. N = a1*c + a0, M = b1*c + b0
83 // The multiplication of N and M becomes,
84 // N * M = (a1 * b1)c^2 + (a0 * b1 + b0 * a1)c + a0 * b0
85 // Multiplication is safe if each term and the sum of the terms
86 // is representable by intmax_t.
87 template<intmax_t _Pn, intmax_t _Qn>
88 struct __safe_multiply
91 static const uintmax_t __c = uintmax_t(1) << (sizeof(intmax_t) * 4);
93 static const uintmax_t __a0 = __static_abs<_Pn>::value % __c;
94 static const uintmax_t __a1 = __static_abs<_Pn>::value / __c;
95 static const uintmax_t __b0 = __static_abs<_Qn>::value % __c;
96 static const uintmax_t __b1 = __static_abs<_Qn>::value / __c;
98 static_assert(__a1 == 0 || __b1 == 0,
99 "overflow in multiplication");
100 static_assert(__a0 * __b1 + __b0 * __a1 < (__c >> 1),
101 "overflow in multiplication");
102 static_assert(__b0 * __a0 <= __INTMAX_MAX__,
103 "overflow in multiplication");
104 static_assert((__a0 * __b1 + __b0 * __a1) * __c
105 <= __INTMAX_MAX__ - __b0 * __a0,
106 "overflow in multiplication");
109 static const intmax_t value = _Pn * _Qn;
112 // Some double-precision utilities, where numbers are represented as
113 // __hi*2^(8*sizeof(uintmax_t)) + __lo.
114 template<uintmax_t __hi1, uintmax_t __lo1, uintmax_t __hi2, uintmax_t __lo2>
116 : integral_constant<bool, (__hi1 < __hi2
117 || (__hi1 == __hi2 && __lo1 < __lo2))>
120 template<uintmax_t __hi1, uintmax_t __lo1, uintmax_t __hi2, uintmax_t __lo2>
123 static constexpr uintmax_t __lo = __lo1 + __lo2;
124 static constexpr uintmax_t __hi = (__hi1 + __hi2 +
125 (__lo1 + __lo2 < __lo1)); // carry
128 // Subtract a number from a bigger one.
129 template<uintmax_t __hi1, uintmax_t __lo1, uintmax_t __hi2, uintmax_t __lo2>
132 static_assert(!__big_less<__hi1, __lo1, __hi2, __lo2>::value,
133 "Internal library error");
134 static constexpr uintmax_t __lo = __lo1 - __lo2;
135 static constexpr uintmax_t __hi = (__hi1 - __hi2 -
136 (__lo1 < __lo2)); // carry
139 // Same principle as __safe_multiply.
140 template<uintmax_t __x, uintmax_t __y>
144 static constexpr uintmax_t __c = uintmax_t(1) << (sizeof(intmax_t) * 4);
145 static constexpr uintmax_t __x0 = __x % __c;
146 static constexpr uintmax_t __x1 = __x / __c;
147 static constexpr uintmax_t __y0 = __y % __c;
148 static constexpr uintmax_t __y1 = __y / __c;
149 static constexpr uintmax_t __x0y0 = __x0 * __y0;
150 static constexpr uintmax_t __x0y1 = __x0 * __y1;
151 static constexpr uintmax_t __x1y0 = __x1 * __y0;
152 static constexpr uintmax_t __x1y1 = __x1 * __y1;
153 static constexpr uintmax_t __mix = __x0y1 + __x1y0; // possible carry...
154 static constexpr uintmax_t __mix_lo = __mix * __c;
155 static constexpr uintmax_t __mix_hi
156 = __mix / __c + ((__mix < __x0y1) ? __c : 0); // ... added here
157 typedef __big_add<__mix_hi, __mix_lo, __x1y1, __x0y0> _Res;
159 static constexpr uintmax_t __hi = _Res::__hi;
160 static constexpr uintmax_t __lo = _Res::__lo;
163 // Adapted from __udiv_qrnnd_c in longlong.h
164 // This version assumes that the high bit of __d is 1.
165 template<uintmax_t __n1, uintmax_t __n0, uintmax_t __d>
166 struct __big_div_impl
169 static_assert(__d >= (uintmax_t(1) << (sizeof(intmax_t) * 8 - 1)),
170 "Internal library error");
171 static_assert(__n1 < __d, "Internal library error");
172 static constexpr uintmax_t __c = uintmax_t(1) << (sizeof(intmax_t) * 4);
173 static constexpr uintmax_t __d1 = __d / __c;
174 static constexpr uintmax_t __d0 = __d % __c;
176 static constexpr uintmax_t __q1x = __n1 / __d1;
177 static constexpr uintmax_t __r1x = __n1 % __d1;
178 static constexpr uintmax_t __m = __q1x * __d0;
179 static constexpr uintmax_t __r1y = __r1x * __c + __n0 / __c;
180 static constexpr uintmax_t __r1z = __r1y + __d;
181 static constexpr uintmax_t __r1
182 = ((__r1y < __m) ? ((__r1z >= __d) && (__r1z < __m))
183 ? (__r1z + __d) : __r1z : __r1y) - __m;
184 static constexpr uintmax_t __q1
185 = __q1x - ((__r1y < __m)
186 ? ((__r1z >= __d) && (__r1z < __m)) ? 2 : 1 : 0);
187 static constexpr uintmax_t __q0x = __r1 / __d1;
188 static constexpr uintmax_t __r0x = __r1 % __d1;
189 static constexpr uintmax_t __n = __q0x * __d0;
190 static constexpr uintmax_t __r0y = __r0x * __c + __n0 % __c;
191 static constexpr uintmax_t __r0z = __r0y + __d;
192 static constexpr uintmax_t __r0
193 = ((__r0y < __n) ? ((__r0z >= __d) && (__r0z < __n))
194 ? (__r0z + __d) : __r0z : __r0y) - __n;
195 static constexpr uintmax_t __q0
196 = __q0x - ((__r0y < __n) ? ((__r0z >= __d)
197 && (__r0z < __n)) ? 2 : 1 : 0);
200 static constexpr uintmax_t __quot = __q1 * __c + __q0;
201 static constexpr uintmax_t __rem = __r0;
204 typedef __big_mul<__quot, __d> _Prod;
205 typedef __big_add<_Prod::__hi, _Prod::__lo, 0, __rem> _Sum;
206 static_assert(_Sum::__hi == __n1 && _Sum::__lo == __n0,
207 "Internal library error");
210 template<uintmax_t __n1, uintmax_t __n0, uintmax_t __d>
214 static_assert(__d != 0, "Internal library error");
215 static_assert(sizeof (uintmax_t) == sizeof (unsigned long long),
216 "This library calls __builtin_clzll on uintmax_t, which "
217 "is unsafe on your platform. Please complain to "
218 "http://gcc.gnu.org/bugzilla/");
219 static constexpr int __shift = __builtin_clzll(__d);
220 static constexpr int __coshift_ = sizeof(uintmax_t) * 8 - __shift;
221 static constexpr int __coshift = (__shift != 0) ? __coshift_ : 0;
222 static constexpr uintmax_t __c1 = uintmax_t(1) << __shift;
223 static constexpr uintmax_t __c2 = uintmax_t(1) << __coshift;
224 static constexpr uintmax_t __new_d = __d * __c1;
225 static constexpr uintmax_t __new_n0 = __n0 * __c1;
226 static constexpr uintmax_t __n1_shifted = (__n1 % __d) * __c1;
227 static constexpr uintmax_t __n0_top = (__shift != 0) ? (__n0 / __c2) : 0;
228 static constexpr uintmax_t __new_n1 = __n1_shifted + __n0_top;
229 typedef __big_div_impl<__new_n1, __new_n0, __new_d> _Res;
232 static constexpr uintmax_t __quot_hi = __n1 / __d;
233 static constexpr uintmax_t __quot_lo = _Res::__quot;
234 static constexpr uintmax_t __rem = _Res::__rem / __c1;
237 typedef __big_mul<__quot_lo, __d> _P0;
238 typedef __big_mul<__quot_hi, __d> _P1;
239 typedef __big_add<_P0::__hi, _P0::__lo, _P1::__lo, __rem> _Sum;
241 static_assert(_P1::__hi == 0, "Internal library error");
242 static_assert(_Sum::__hi >= _P0::__hi, "Internal library error");
243 // Matches the input data.
244 static_assert(_Sum::__hi == __n1 && _Sum::__lo == __n0,
245 "Internal library error");
246 static_assert(__rem < __d, "Internal library error");
252 * @brief Provides compile-time rational arithmetic.
254 * This class template represents any finite rational number with a
255 * numerator and denominator representable by compile-time constants of
256 * type intmax_t. The ratio is simplified when instantiated.
260 * std::ratio<7,-21>::num == -1;
261 * std::ratio<7,-21>::den == 3;
265 template<intmax_t _Num, intmax_t _Den = 1>
268 static_assert(_Den != 0, "denominator cannot be zero");
269 static_assert(_Num >= -__INTMAX_MAX__ && _Den >= -__INTMAX_MAX__,
272 // Note: sign(N) * abs(N) == N
273 static constexpr intmax_t num =
274 _Num * __static_sign<_Den>::value / __static_gcd<_Num, _Den>::value;
276 static constexpr intmax_t den =
277 __static_abs<_Den>::value / __static_gcd<_Num, _Den>::value;
279 typedef ratio<num, den> type;
282 template<intmax_t _Num, intmax_t _Den>
283 constexpr intmax_t ratio<_Num, _Den>::num;
285 template<intmax_t _Num, intmax_t _Den>
286 constexpr intmax_t ratio<_Num, _Den>::den;
288 /// @cond undocumented
290 template<typename _R1, typename _R2>
291 struct __ratio_multiply
294 static const intmax_t __gcd1 =
295 __static_gcd<_R1::num, _R2::den>::value;
296 static const intmax_t __gcd2 =
297 __static_gcd<_R2::num, _R1::den>::value;
301 __safe_multiply<(_R1::num / __gcd1),
302 (_R2::num / __gcd2)>::value,
303 __safe_multiply<(_R1::den / __gcd2),
304 (_R2::den / __gcd1)>::value> type;
306 static constexpr intmax_t num = type::num;
307 static constexpr intmax_t den = type::den;
310 template<typename _R1, typename _R2>
311 constexpr intmax_t __ratio_multiply<_R1, _R2>::num;
313 template<typename _R1, typename _R2>
314 constexpr intmax_t __ratio_multiply<_R1, _R2>::den;
319 template<typename _R1, typename _R2>
320 using ratio_multiply = typename __ratio_multiply<_R1, _R2>::type;
322 /// @cond undocumented
324 template<typename _R1, typename _R2>
325 struct __ratio_divide
327 static_assert(_R2::num != 0, "division by 0");
329 typedef typename __ratio_multiply<
331 ratio<_R2::den, _R2::num>>::type type;
333 static constexpr intmax_t num = type::num;
334 static constexpr intmax_t den = type::den;
337 template<typename _R1, typename _R2>
338 constexpr intmax_t __ratio_divide<_R1, _R2>::num;
340 template<typename _R1, typename _R2>
341 constexpr intmax_t __ratio_divide<_R1, _R2>::den;
346 template<typename _R1, typename _R2>
347 using ratio_divide = typename __ratio_divide<_R1, _R2>::type;
350 template<typename _R1, typename _R2>
352 : integral_constant<bool, _R1::num == _R2::num && _R1::den == _R2::den>
356 template<typename _R1, typename _R2>
357 struct ratio_not_equal
358 : integral_constant<bool, !ratio_equal<_R1, _R2>::value>
361 /// @cond undocumented
363 // Both numbers are positive.
364 template<typename _R1, typename _R2,
365 typename _Left = __big_mul<_R1::num,_R2::den>,
366 typename _Right = __big_mul<_R2::num,_R1::den> >
367 struct __ratio_less_impl_1
368 : integral_constant<bool, __big_less<_Left::__hi, _Left::__lo,
369 _Right::__hi, _Right::__lo>::value>
372 template<typename _R1, typename _R2,
373 bool = (_R1::num == 0 || _R2::num == 0
374 || (__static_sign<_R1::num>::value
375 != __static_sign<_R2::num>::value)),
376 bool = (__static_sign<_R1::num>::value == -1
377 && __static_sign<_R2::num>::value == -1)>
378 struct __ratio_less_impl
379 : __ratio_less_impl_1<_R1, _R2>::type
382 template<typename _R1, typename _R2>
383 struct __ratio_less_impl<_R1, _R2, true, false>
384 : integral_constant<bool, _R1::num < _R2::num>
387 template<typename _R1, typename _R2>
388 struct __ratio_less_impl<_R1, _R2, false, true>
389 : __ratio_less_impl_1<ratio<-_R2::num, _R2::den>,
390 ratio<-_R1::num, _R1::den> >::type
396 template<typename _R1, typename _R2>
398 : __ratio_less_impl<_R1, _R2>::type
402 template<typename _R1, typename _R2>
403 struct ratio_less_equal
404 : integral_constant<bool, !ratio_less<_R2, _R1>::value>
408 template<typename _R1, typename _R2>
410 : integral_constant<bool, ratio_less<_R2, _R1>::value>
413 /// ratio_greater_equal
414 template<typename _R1, typename _R2>
415 struct ratio_greater_equal
416 : integral_constant<bool, !ratio_less<_R1, _R2>::value>
419 #if __cplusplus > 201402L
420 template <typename _R1, typename _R2>
421 inline constexpr bool ratio_equal_v = ratio_equal<_R1, _R2>::value;
422 template <typename _R1, typename _R2>
423 inline constexpr bool ratio_not_equal_v = ratio_not_equal<_R1, _R2>::value;
424 template <typename _R1, typename _R2>
425 inline constexpr bool ratio_less_v = ratio_less<_R1, _R2>::value;
426 template <typename _R1, typename _R2>
427 inline constexpr bool ratio_less_equal_v =
428 ratio_less_equal<_R1, _R2>::value;
429 template <typename _R1, typename _R2>
430 inline constexpr bool ratio_greater_v = ratio_greater<_R1, _R2>::value;
431 template <typename _R1, typename _R2>
432 inline constexpr bool ratio_greater_equal_v
433 = ratio_greater_equal<_R1, _R2>::value;
436 /// @cond undocumented
438 template<typename _R1, typename _R2,
439 bool = (_R1::num >= 0),
440 bool = (_R2::num >= 0),
441 bool = ratio_less<ratio<__static_abs<_R1::num>::value, _R1::den>,
442 ratio<__static_abs<_R2::num>::value, _R2::den> >::value>
443 struct __ratio_add_impl
446 typedef typename __ratio_add_impl<
447 ratio<-_R1::num, _R1::den>,
448 ratio<-_R2::num, _R2::den> >::type __t;
450 typedef ratio<-__t::num, __t::den> type;
453 // True addition of nonnegative numbers.
454 template<typename _R1, typename _R2, bool __b>
455 struct __ratio_add_impl<_R1, _R2, true, true, __b>
458 static constexpr uintmax_t __g = __static_gcd<_R1::den, _R2::den>::value;
459 static constexpr uintmax_t __d2 = _R2::den / __g;
460 typedef __big_mul<_R1::den, __d2> __d;
461 typedef __big_mul<_R1::num, _R2::den / __g> __x;
462 typedef __big_mul<_R2::num, _R1::den / __g> __y;
463 typedef __big_add<__x::__hi, __x::__lo, __y::__hi, __y::__lo> __n;
464 static_assert(__n::__hi >= __x::__hi, "Internal library error");
465 typedef __big_div<__n::__hi, __n::__lo, __g> __ng;
466 static constexpr uintmax_t __g2 = __static_gcd<__ng::__rem, __g>::value;
467 typedef __big_div<__n::__hi, __n::__lo, __g2> __n_final;
468 static_assert(__n_final::__rem == 0, "Internal library error");
469 static_assert(__n_final::__quot_hi == 0 &&
470 __n_final::__quot_lo <= __INTMAX_MAX__, "overflow in addition");
471 typedef __big_mul<_R1::den / __g2, __d2> __d_final;
472 static_assert(__d_final::__hi == 0 &&
473 __d_final::__lo <= __INTMAX_MAX__, "overflow in addition");
475 typedef ratio<__n_final::__quot_lo, __d_final::__lo> type;
478 template<typename _R1, typename _R2>
479 struct __ratio_add_impl<_R1, _R2, false, true, true>
480 : __ratio_add_impl<_R2, _R1>
483 // True subtraction of nonnegative numbers yielding a nonnegative result.
484 template<typename _R1, typename _R2>
485 struct __ratio_add_impl<_R1, _R2, true, false, false>
488 static constexpr uintmax_t __g = __static_gcd<_R1::den, _R2::den>::value;
489 static constexpr uintmax_t __d2 = _R2::den / __g;
490 typedef __big_mul<_R1::den, __d2> __d;
491 typedef __big_mul<_R1::num, _R2::den / __g> __x;
492 typedef __big_mul<-_R2::num, _R1::den / __g> __y;
493 typedef __big_sub<__x::__hi, __x::__lo, __y::__hi, __y::__lo> __n;
494 typedef __big_div<__n::__hi, __n::__lo, __g> __ng;
495 static constexpr uintmax_t __g2 = __static_gcd<__ng::__rem, __g>::value;
496 typedef __big_div<__n::__hi, __n::__lo, __g2> __n_final;
497 static_assert(__n_final::__rem == 0, "Internal library error");
498 static_assert(__n_final::__quot_hi == 0 &&
499 __n_final::__quot_lo <= __INTMAX_MAX__, "overflow in addition");
500 typedef __big_mul<_R1::den / __g2, __d2> __d_final;
501 static_assert(__d_final::__hi == 0 &&
502 __d_final::__lo <= __INTMAX_MAX__, "overflow in addition");
504 typedef ratio<__n_final::__quot_lo, __d_final::__lo> type;
507 template<typename _R1, typename _R2>
510 typedef typename __ratio_add_impl<_R1, _R2>::type type;
511 static constexpr intmax_t num = type::num;
512 static constexpr intmax_t den = type::den;
515 template<typename _R1, typename _R2>
516 constexpr intmax_t __ratio_add<_R1, _R2>::num;
518 template<typename _R1, typename _R2>
519 constexpr intmax_t __ratio_add<_R1, _R2>::den;
524 template<typename _R1, typename _R2>
525 using ratio_add = typename __ratio_add<_R1, _R2>::type;
527 /// @cond undocumented
529 template<typename _R1, typename _R2>
530 struct __ratio_subtract
532 typedef typename __ratio_add<
534 ratio<-_R2::num, _R2::den>>::type type;
536 static constexpr intmax_t num = type::num;
537 static constexpr intmax_t den = type::den;
540 template<typename _R1, typename _R2>
541 constexpr intmax_t __ratio_subtract<_R1, _R2>::num;
543 template<typename _R1, typename _R2>
544 constexpr intmax_t __ratio_subtract<_R1, _R2>::den;
549 template<typename _R1, typename _R2>
550 using ratio_subtract = typename __ratio_subtract<_R1, _R2>::type;
553 typedef ratio<1, 1000000000000000000> atto;
554 typedef ratio<1, 1000000000000000> femto;
555 typedef ratio<1, 1000000000000> pico;
556 typedef ratio<1, 1000000000> nano;
557 typedef ratio<1, 1000000> micro;
558 typedef ratio<1, 1000> milli;
559 typedef ratio<1, 100> centi;
560 typedef ratio<1, 10> deci;
561 typedef ratio< 10, 1> deca;
562 typedef ratio< 100, 1> hecto;
563 typedef ratio< 1000, 1> kilo;
564 typedef ratio< 1000000, 1> mega;
565 typedef ratio< 1000000000, 1> giga;
566 typedef ratio< 1000000000000, 1> tera;
567 typedef ratio< 1000000000000000, 1> peta;
568 typedef ratio< 1000000000000000000, 1> exa;
571 _GLIBCXX_END_NAMESPACE_VERSION
576 #endif //_GLIBCXX_RATIO