3 // Copyright (C) 2008, 2009, 2010 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.
29 #ifndef _GLIBCXX_RATIO
30 #define _GLIBCXX_RATIO 1
32 #pragma GCC system_header
34 #ifndef __GXX_EXPERIMENTAL_CXX0X__
35 # include <bits/c++0x_warning.h>
38 #include <type_traits>
41 #ifdef _GLIBCXX_USE_C99_STDINT_TR1
43 _GLIBCXX_BEGIN_NAMESPACE(std)
46 * @defgroup ratio Rational Arithmetic
49 * Compile time representation of finite rational numbers.
53 template<intmax_t _Pn>
55 : integral_constant<intmax_t, (_Pn < 0) ? -1 : 1>
58 template<intmax_t _Pn>
60 : integral_constant<intmax_t, _Pn * __static_sign<_Pn>::value>
63 template<intmax_t _Pn, intmax_t _Qn>
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, "overflow in multiplication");
108 static const intmax_t value = _Pn * _Qn;
111 // Helpers for __safe_add
112 template<intmax_t _Pn, intmax_t _Qn, bool>
113 struct __add_overflow_check_impl
114 : integral_constant<bool, (_Pn <= __INTMAX_MAX__ - _Qn)>
117 template<intmax_t _Pn, intmax_t _Qn>
118 struct __add_overflow_check_impl<_Pn, _Qn, false>
119 : integral_constant<bool, (_Pn >= -__INTMAX_MAX__ - _Qn)>
122 template<intmax_t _Pn, intmax_t _Qn>
123 struct __add_overflow_check
124 : __add_overflow_check_impl<_Pn, _Qn, (_Qn >= 0)>
127 template<intmax_t _Pn, intmax_t _Qn>
130 static_assert(__add_overflow_check<_Pn, _Qn>::value != 0,
131 "overflow in addition");
133 static const intmax_t value = _Pn + _Qn;
137 * @brief Provides compile-time rational arithmetic.
139 * This class template represents any finite rational number with a
140 * numerator and denominator representable by compile-time constants of
141 * type intmax_t. The ratio is simplified when instantiated.
145 * std::ratio<7,-21>::num == -1;
146 * std::ratio<7,-21>::den == 3;
150 template<intmax_t _Num, intmax_t _Den = 1>
153 static_assert(_Den != 0, "denominator cannot be zero");
154 static_assert(_Num >= -__INTMAX_MAX__ && _Den >= -__INTMAX_MAX__,
157 // Note: sign(N) * abs(N) == N
158 static constexpr intmax_t num =
159 _Num * __static_sign<_Den>::value / __static_gcd<_Num, _Den>::value;
161 static constexpr intmax_t den =
162 __static_abs<_Den>::value / __static_gcd<_Num, _Den>::value;
164 typedef ratio<num, den> type;
167 template<intmax_t _Num, intmax_t _Den>
168 constexpr intmax_t ratio<_Num, _Den>::num;
170 template<intmax_t _Num, intmax_t _Den>
171 constexpr intmax_t ratio<_Num, _Den>::den;
174 template<typename _R1, typename _R2>
178 static const intmax_t __gcd =
179 __static_gcd<_R1::den, _R2::den>::value;
184 __safe_multiply<_R1::num, (_R2::den / __gcd)>::value,
185 __safe_multiply<_R2::num, (_R1::den / __gcd)>::value>::value,
186 __safe_multiply<_R1::den, (_R2::den / __gcd)>::value> type;
188 static constexpr intmax_t num = type::num;
189 static constexpr intmax_t den = type::den;
192 template<typename _R1, typename _R2>
193 constexpr intmax_t ratio_add<_R1, _R2>::num;
195 template<typename _R1, typename _R2>
196 constexpr intmax_t ratio_add<_R1, _R2>::den;
199 template<typename _R1, typename _R2>
200 struct ratio_subtract
202 typedef typename ratio_add<
204 ratio<-_R2::num, _R2::den>>::type type;
206 static constexpr intmax_t num = type::num;
207 static constexpr intmax_t den = type::den;
210 template<typename _R1, typename _R2>
211 constexpr intmax_t ratio_subtract<_R1, _R2>::num;
213 template<typename _R1, typename _R2>
214 constexpr intmax_t ratio_subtract<_R1, _R2>::den;
217 template<typename _R1, typename _R2>
218 struct ratio_multiply
221 static const intmax_t __gcd1 =
222 __static_gcd<_R1::num, _R2::den>::value;
223 static const intmax_t __gcd2 =
224 __static_gcd<_R2::num, _R1::den>::value;
228 __safe_multiply<(_R1::num / __gcd1),
229 (_R2::num / __gcd2)>::value,
230 __safe_multiply<(_R1::den / __gcd2),
231 (_R2::den / __gcd1)>::value> type;
233 static constexpr intmax_t num = type::num;
234 static constexpr intmax_t den = type::den;
237 template<typename _R1, typename _R2>
238 constexpr intmax_t ratio_multiply<_R1, _R2>::num;
240 template<typename _R1, typename _R2>
241 constexpr intmax_t ratio_multiply<_R1, _R2>::den;
244 template<typename _R1, typename _R2>
247 static_assert(_R2::num != 0, "division by 0");
249 typedef typename ratio_multiply<
251 ratio<_R2::den, _R2::num>>::type type;
253 static constexpr intmax_t num = type::num;
254 static constexpr intmax_t den = type::den;
257 template<typename _R1, typename _R2>
258 constexpr intmax_t ratio_divide<_R1, _R2>::num;
260 template<typename _R1, typename _R2>
261 constexpr intmax_t ratio_divide<_R1, _R2>::den;
264 template<typename _R1, typename _R2>
266 : integral_constant<bool, _R1::num == _R2::num && _R1::den == _R2::den>
270 template<typename _R1, typename _R2>
271 struct ratio_not_equal
272 : integral_constant<bool, !ratio_equal<_R1, _R2>::value>
275 template<typename _R1>
276 struct __ratio_less_impl_1
277 : integral_constant<bool, _R1::num < _R1::den>
280 template<typename _R1, typename _R2,
281 bool = (_R1::num == 0 || _R2::num == 0
282 || (__static_sign<_R1::num>::value
283 != __static_sign<_R2::num>::value)),
284 bool = (__static_sign<_R1::num>::value == -1
285 && __static_sign<_R2::num>::value == -1)>
286 struct __ratio_less_impl
287 : __ratio_less_impl_1<typename ratio_divide<_R1, _R2>::type>::type
290 template<typename _R1, typename _R2>
291 struct __ratio_less_impl<_R1, _R2, true, false>
292 : integral_constant<bool, _R1::num < _R2::num>
295 template<typename _R1, typename _R2>
296 struct __ratio_less_impl<_R1, _R2, false, true>
297 : __ratio_less_impl_1<typename ratio_divide<_R2, _R1>::type>::type
301 template<typename _R1, typename _R2>
303 : __ratio_less_impl<_R1, _R2>::type
307 template<typename _R1, typename _R2>
308 struct ratio_less_equal
309 : integral_constant<bool, !ratio_less<_R2, _R1>::value>
313 template<typename _R1, typename _R2>
315 : integral_constant<bool, ratio_less<_R2, _R1>::value>
318 /// ratio_greater_equal
319 template<typename _R1, typename _R2>
320 struct ratio_greater_equal
321 : integral_constant<bool, !ratio_less<_R1, _R2>::value>
324 typedef ratio<1, 1000000000000000000> atto;
325 typedef ratio<1, 1000000000000000> femto;
326 typedef ratio<1, 1000000000000> pico;
327 typedef ratio<1, 1000000000> nano;
328 typedef ratio<1, 1000000> micro;
329 typedef ratio<1, 1000> milli;
330 typedef ratio<1, 100> centi;
331 typedef ratio<1, 10> deci;
332 typedef ratio< 10, 1> deca;
333 typedef ratio< 100, 1> hecto;
334 typedef ratio< 1000, 1> kilo;
335 typedef ratio< 1000000, 1> mega;
336 typedef ratio< 1000000000, 1> giga;
337 typedef ratio< 1000000000000, 1> tera;
338 typedef ratio< 1000000000000000, 1> peta;
339 typedef ratio< 1000000000000000000, 1> exa;
342 _GLIBCXX_END_NAMESPACE
344 #endif //_GLIBCXX_USE_C99_STDINT_TR1
346 #endif //__GXX_EXPERIMENTAL_CXX0X__
348 #endif //_GLIBCXX_RATIO