1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
// The following doc comment is kept in sync with the `README.md` file.
// Please run `cargo sync-readme` after modifying its contents.
//! This crate implements several algorithms for finding the greatest
//! common divisor of two single-precision numbers.
//!
//! The _greatest common divisor_ $\gcd(u,v)$ of two integers $u$ and $v$,
//! not both zero, is the largest integer that evenly divides them both.
//! This definition does not apply when $u$ and $v$ are both zero, since
//! every number divides zero; for convenience, all the algorithms adhere
//! to the convention that $\gcd(0,0)=0$.
/// Computes the greatest common divisor of $u$ and $v$ using the modern
/// version of the Euclidean algorithm, as described in Algorithm 4.5.2A
/// of _TAOCP_.
///
/// # Examples
/// ```
/// use gcds::euclid;
///
/// assert_eq!(euclid(0, 0), 0);
/// assert_eq!(euclid(2, 0), 2);
/// assert_eq!(euclid(1, 1), 1);
/// assert_eq!(euclid(1, 13), 1);
/// assert_eq!(euclid(1769, 551), 29);
/// assert_eq!(euclid(7000, 4400), 200);
/// assert_eq!(euclid(40902, 24140), 34);
/// assert_eq!(euclid(u64::MAX, u64::MAX - 1), 1);
/// assert_eq!(euclid(u64::MAX, u64::MAX), u64::MAX);
///
/// // Find the gcd of two signed integers.
/// assert_eq!(euclid((-9i64).unsigned_abs(), 3), 3);
/// ```
pub const
/// Computes the greatest common divisor of $u$ and $v$ using the binary
/// gcd algorithm of J. Stein [["Computational Problems Associated with Racah Algebra,"][stein]
/// _J. Comp. Phys._ **1** (1967), 397--405].
///
/// A summary of what was known up to 1999 about the average running time
/// of this method appears in R. P. Brent's [_"Further analysis of the Binary Euclidean algorithm,"_][brent]
/// Technical Report PRG TR-7--99 (Oxford Univ. Computing Laboratory, 1999).
/// See also Section 4.5.2 of _TAOCP_.
///
/// # Examples
/// ```
/// use gcds::binary_stein;
///
/// assert_eq!(binary_stein(0, 0), 0);
/// assert_eq!(binary_stein(0, 3), 3);
/// assert_eq!(binary_stein(1, 1), 1);
/// assert_eq!(binary_stein(5, 1), 1);
/// assert_eq!(binary_stein(114, 551), 19);
/// assert_eq!(binary_stein(1992, 581), 83);
/// assert_eq!(binary_stein(51041, 18017), 43);
/// assert_eq!(binary_stein(u64::MAX, u64::MAX - 1), 1);
/// assert_eq!(binary_stein(u64::MAX, u64::MAX), u64::MAX);
///
/// // Find the gcd of two signed numbers.
/// assert_eq!(binary_stein(36, (-48i64).unsigned_abs()), 12);
/// ```
///
/// [stein]: https://doi.org/10.1016/0021-9991(67)90047-2
/// [brent]: https://maths-people.anu.edu.au/~brent/pd/rpb183tr.pdf
/// Computes the greatest common divisor of $u$ and $v$ using an optimized
/// variant of the [binary gcd algorithm] proposed by P. Bonzini, and studied
/// by D. Lemire [["Greatest common divisor, the extended Euclidean algorithm, and speed!"][lemire]
/// (April 2024)].
///
/// # Examples
/// ```
/// use gcds::binary_bonzini;
///
/// assert_eq!(binary_bonzini(0, 0), 0);
/// assert_eq!(binary_bonzini(2, 0), 2);
/// assert_eq!(binary_bonzini(1, 1), 1);
/// assert_eq!(binary_bonzini(1, 4), 1);
/// assert_eq!(binary_bonzini(792, 252), 36);
/// assert_eq!(binary_bonzini(954, 5883), 159);
/// assert_eq!(binary_bonzini(14003, 63194), 19);
/// assert_eq!(binary_bonzini(u64::MAX, u64::MAX - 1), 1);
/// assert_eq!(binary_bonzini(u64::MAX, u64::MAX), u64::MAX);
///
/// // Find the gcd of two signed numbers.
/// assert_eq!(binary_bonzini((-8i64).unsigned_abs(), 76), 4);
/// ```
///
/// [binary gcd algorithm]: binary_stein
/// [lemire]: https://lemire.me/blog/2024/04/13/greatest-common-divisor-the-extended-euclidean-algorithm-and-speed/
/// Computes the greatest common divisor of $u$ and $v$ using an alternative
/// formulation of the binary gcd algorithm proposed by R. P. Brent
/// [[_"Further analysis of the Binary Euclidean algorithm,"_][brent]
/// Technical Report PRG TR-7--99 (Oxford Univ. Computing Laboratory, 1999),
/// Section 5].
///
/// # Examples
/// ```
/// use gcds::binary_brent;
///
/// assert_eq!(binary_brent(0, 0), 0);
/// assert_eq!(binary_brent(0, 4), 4);
/// assert_eq!(binary_brent(1, 1), 1);
/// assert_eq!(binary_brent(1, 7), 1);
/// assert_eq!(binary_brent(306, 5049), 153);
/// assert_eq!(binary_brent(7684, 3400), 68);
/// assert_eq!(binary_brent(68825, 10150), 25);
/// assert_eq!(binary_brent(u64::MAX, u64::MAX - 1), 1);
/// assert_eq!(binary_brent(u64::MAX, u64::MAX), u64::MAX);
///
/// // Find the gcd of two signed integers.
/// assert_eq!(
/// binary_brent((-10i64).unsigned_abs(), (-5i64).unsigned_abs()),
/// 5
/// );
/// ```
///
/// [brent]: https://maths-people.anu.edu.au/~brent/pd/rpb183tr.pdf
/// Computes the greatest common divisor of $u$ and $v$ using the systolic
/// variant of the binary gcd algorithm by R. P. Brent and H. T. Kung [_IEEE
/// Symposium on Computer Arithmetic_ **7** (1985), [118--125][systolic]].
///
/// Exercise 4.5.2.40 of _TAOCP_ studies the worst-case running time of
/// this method.
///
/// # Examples
/// ```
/// use gcds::binary_brent_kung;
///
/// assert_eq!(binary_brent_kung(0, 0), 0);
/// assert_eq!(binary_brent_kung(-3, 0), 3);
/// assert_eq!(binary_brent_kung(1, 1), 1);
/// assert_eq!(binary_brent_kung(1, -6), 1);
/// assert_eq!(binary_brent_kung(-45, -63), 9);
/// assert_eq!(binary_brent_kung(4899, 690), 69);
/// assert_eq!(binary_brent_kung(-4515, 9765), 105);
/// assert_eq!(binary_brent_kung(75850, 20213), 41);
/// assert_eq!(binary_brent_kung(i64::MAX - 1, i64::MAX), 1);
/// assert_eq!(binary_brent_kung(i64::MAX, i64::MAX), i64::MAX as u64);
/// assert_eq!(binary_brent_kung(i64::MAX, -i64::MAX), i64::MAX as u64);
/// ```
///
/// [systolic]: https://maths-people.anu.edu.au/brent/pd/rpb077i.pdf
/// Computes the greatest common divisor of $u$ and $v$ using a cross
/// between [Euclid's algorithm](euclid) and the [binary gcd algorithm]
/// proposed by V. C. Harris \[_The Fibonacci Quarterly_ **8** (1970),
/// [102--103][harris]].
///
/// See Section 4.5.2 of _TAOCP_ for a short discussion of this method.
///
/// # Examples
/// ```
/// use gcds::harris;
///
/// assert_eq!(harris(0, 0), 0);
/// assert_eq!(harris(0, 3), 3);
/// assert_eq!(harris(1, 1), 1);
/// assert_eq!(harris(1, 4), 1);
/// assert_eq!(harris(45, 165), 15);
/// assert_eq!(harris(6119, 2175), 29);
/// assert_eq!(harris(69336, 82818), 1926);
/// assert_eq!(harris(u64::MAX, u64::MAX - 1), 1);
/// assert_eq!(harris(u64::MAX, u64::MAX), u64::MAX);
///
/// // Find the gcd of two signed integers.
/// assert_eq!(harris(18, (-27i64).unsigned_abs()), 9);
/// ```
///
/// [binary gcd algorithm]: binary_stein
/// [harris]: https://www.fq.math.ca/Scanned/8-1/harris1.pdf