feanor-math 3.5.18

A library for number theory, providing implementations for arithmetic in various rings and algorithms working on them.
Documentation
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
use std::cmp::max;
use std::mem::swap;

use crate::algorithms::int_factor::is_prime_power;
use crate::algorithms::matmul::strassen::{dispatch_strassen_impl, strassen_mem_size};
use crate::algorithms::poly_div::{PolyDivRemReducedError, poly_div_rem_finite_reduced};
use crate::computation::*;
use crate::divisibility::*;
use crate::field::*;
use crate::homomorphism::*;
use crate::integer::*;
use crate::matrix::*;
use crate::pid::*;
use crate::primitive_int::*;
use crate::ring::*;
use crate::rings::finite::*;
use crate::rings::poly::*;

/// Returns a list of `(fi, ki)` such that the `fi` are monic, square-free and pairwise coprime, and
/// `f = a prod_i fi^ki` for a unit `a` of the base field.
#[stability::unstable(feature = "enable")]
pub fn poly_power_decomposition_finite_field<P, Controller>(
    poly_ring: P,
    poly: &El<P>,
    controller: Controller,
) -> Vec<(El<P>, usize)>
where
    P: RingStore + Copy,
    P::Type: PolyRing + EuclideanRing,
    <<P::Type as RingExtension>::BaseRing as RingStore>::Type: FiniteRing + Field,
    Controller: ComputationController,
{
    assert!(!poly_ring.is_zero(poly));
    let squarefree_part = poly_squarefree_part_finite_field(poly_ring, poly, controller.clone());
    if poly_ring.degree(&squarefree_part).unwrap() == poly_ring.degree(poly).unwrap() {
        return vec![(squarefree_part, 1)];
    } else {
        let square_part = poly_ring.checked_div(poly, &squarefree_part).unwrap();
        let square_part_decomposition = poly_power_decomposition_finite_field(poly_ring, &square_part, controller);
        let mut result = square_part_decomposition;
        let mut degree = 0;
        for (g, k) in &mut result {
            *k += 1;
            degree += poly_ring.degree(g).unwrap() * *k;
        }
        if degree != poly_ring.degree(poly).unwrap() {
            let remaining_part = poly_ring
                .checked_div(
                    poly,
                    &poly_ring.prod(result.iter().map(|(g, e)| poly_ring.pow(poly_ring.clone_el(g), *e))),
                )
                .unwrap();
            result.insert(0, (poly_ring.normalize(remaining_part), 1));
        }
        return result;
    }
}

/// Computes the square-free part of a polynomial `f`, i.e. the greatest (w.r.t.
/// divisibility) polynomial `g | f` that is square-free.
///
/// The returned polynomial is always monic, and with this restriction, it
/// is unique.
#[stability::unstable(feature = "enable")]
pub fn poly_squarefree_part_finite_field<P, Controller>(poly_ring: P, poly: &El<P>, controller: Controller) -> El<P>
where
    P: RingStore,
    P::Type: PolyRing + PrincipalIdealRing,
    <<P::Type as RingExtension>::BaseRing as RingStore>::Type: FiniteRing + Field,
    Controller: ComputationController,
{
    assert!(!poly_ring.is_zero(poly));
    if poly_ring.degree(poly).unwrap() == 0 {
        return poly_ring.one();
    }
    let derivate = derive_poly(&poly_ring, poly);
    if poly_ring.is_zero(&derivate) {
        let q = poly_ring.base_ring().size(&BigIntRing::RING).unwrap();
        let (p, e) = is_prime_power(BigIntRing::RING, &q).unwrap();
        let p = int_cast(p, StaticRing::<i64>::RING, BigIntRing::RING) as usize;
        assert!(p > 0);
        let undo_frobenius = Frobenius::new(poly_ring.base_ring(), e - 1);
        let base_poly = poly_ring.from_terms(poly_ring.terms(poly).map(|(c, i)| {
            debug_assert!(i % p == 0);
            (undo_frobenius.map_ref(c), i / p)
        }));
        return poly_squarefree_part_finite_field(poly_ring, &base_poly, controller);
    } else {
        let square_part = poly_ring.ideal_gen(poly, &derivate);
        let result = poly_ring.checked_div(poly, &square_part).unwrap();
        return poly_ring.normalize(result);
    }
}

const FAST_POLY_EEA_THRESHOLD: usize = 32;

/// Computes linearly independent vectors `(s, t)` and `(s', t')` and `a, a'`
/// such that `a = s * lhs + t * rhs` and `a' = s' * lhs + t' * rhs` are both of
/// degree at most `target_deg`, or alternatively one of them is zero (in which
/// case the degree cannot be reduced further).
///
/// The degrees of `s, t, s', t'` are bounded as
/// ```text
///   deg(s) < deg(rhs) - deg(a)
///   deg(t) < deg(lhs) - deg(a)
///   deg(s') < deg(rhs) - deg(a')
///   deg(t') < deg(lhs) - deg(a')
/// ```
fn partial_eea<P>(ring: P, lhs: El<P>, rhs: El<P>, target_deg: usize) -> ([El<P>; 4], [El<P>; 2])
where
    P: RingStore + Copy,
    P::Type: PolyRing + EuclideanRing,
    <<P::Type as RingExtension>::BaseRing as RingStore>::Type: Field,
{
    if ring.is_zero(&lhs) || ring.is_zero(&rhs) {
        return ([ring.one(), ring.zero(), ring.zero(), ring.one()], [lhs, rhs]);
    }
    let (mut a, mut b) = (ring.clone_el(&lhs), ring.clone_el(&rhs));
    let (mut sa, mut ta) = (ring.one(), ring.zero());
    let (mut sb, mut tb) = (ring.zero(), ring.one());

    if ring.degree(&a).unwrap() < ring.degree(&b).unwrap() {
        swap(&mut a, &mut b);
        swap(&mut sa, &mut sb);
        swap(&mut ta, &mut tb);
    }

    while ring.degree(&a).unwrap() > target_deg && !ring.is_zero(&b) {
        debug_assert!(ring.eq_el(&a, &ring.add(ring.mul_ref(&sa, &lhs), ring.mul_ref(&ta, &rhs))));
        debug_assert!(ring.eq_el(&b, &ring.add(ring.mul_ref(&sb, &lhs), ring.mul_ref(&tb, &rhs))));

        let (quo, rem) = ring.euclidean_div_rem(a, &b);
        ta = ring.sub(ta, ring.mul_ref(&quo, &tb));
        sa = ring.sub(sa, ring.mul_ref_snd(quo, &sb));
        a = rem;

        swap(&mut a, &mut b);
        swap(&mut sa, &mut sb);
        swap(&mut ta, &mut tb);

        debug_assert_eq!(
            ring.degree(&sb).unwrap(),
            ring.degree(&rhs).unwrap() - ring.degree(&a).unwrap()
        );
        debug_assert_eq!(
            ring.degree(&tb).unwrap(),
            ring.degree(&lhs).unwrap() - ring.degree(&a).unwrap()
        );
    }
    return ([sa, ta, sb, tb], [a, b]);
}

/// Computes a Bezout identity for polynomials, using a fast divide-and-conquer
/// polynomial gcd algorithm. Unless you are implementing [`crate::pid::PrincipalIdealRing`]
/// for a custom type, you should use [`crate::pid::PrincipalIdealRing::extended_ideal_gen()`]
/// to get a Bezout identity instead.
///
/// A Bezout identity is exactly as specified by
/// [`crate::pid::PrincipalIdealRing::extended_ideal_gen()`], i.e. `s, t, d` such that `d` is the
/// gcd of `lhs` and `rhs`, and `d = lhs * s + rhs * t`. Note that this algorithm does not try to
/// avoid coefficient growth, and thus is only fast over finite fields. Furthermore, it will fall
/// back to a slightly less efficient variant of the standard Euclidean algorithm on small inputs.
#[stability::unstable(feature = "enable")]
pub fn fast_poly_eea<P, Controller>(
    poly_ring: P,
    lhs: El<P>,
    rhs: El<P>,
    controller: Controller,
) -> (El<P>, El<P>, El<P>)
where
    P: RingStore + Copy,
    P::Type: PolyRing + EuclideanRing,
    <<P::Type as RingExtension>::BaseRing as RingStore>::Type: Field,
    Controller: ComputationController,
{
    fn fast_poly_eea_impl<P, Controller>(
        poly_ring: P,
        lhs: El<P>,
        rhs: El<P>,
        target_deg: usize,
        controller: Controller,
        memory: &mut [El<P>],
    ) -> ([El<P>; 4], [El<P>; 2])
    where
        P: RingStore + Copy,
        P::Type: PolyRing + EuclideanRing,
        <<P::Type as RingExtension>::BaseRing as RingStore>::Type: Field,
        Controller: ComputationController,
    {
        if poly_ring.is_zero(&lhs) || poly_ring.is_zero(&rhs) {
            return (
                [poly_ring.one(), poly_ring.zero(), poly_ring.zero(), poly_ring.one()],
                [lhs, rhs],
            );
        }
        let ldeg = poly_ring.degree(&lhs).unwrap();
        let rdeg = poly_ring.degree(&rhs).unwrap();
        if ldeg < target_deg + FAST_POLY_EEA_THRESHOLD || rdeg < target_deg + FAST_POLY_EEA_THRESHOLD {
            log_progress!(controller, ".");
            return partial_eea(poly_ring, lhs, rhs, target_deg);
        } else if ldeg >= 2 * rdeg {
            let (mut q, r) = poly_ring.euclidean_div_rem(lhs, &rhs);
            poly_ring.negate_inplace(&mut q);
            let (transform, rest) = fast_poly_eea_impl(poly_ring, r, rhs, target_deg, controller, memory);
            let mut transform: (_, _, _, _) = transform.into();
            transform.1 = poly_ring.fma(&q, &transform.0, transform.1);
            transform.3 = poly_ring.fma(&q, &transform.2, transform.3);
            return (transform.into(), rest);
        } else if rdeg >= 2 * ldeg {
            let (transform, rest) = fast_poly_eea_impl(poly_ring, rhs, lhs, target_deg, controller, memory);
            let transform: (_, _, _, _) = transform.into();
            return ([transform.1, transform.0, transform.3, transform.2], rest);
        }
        let split_deg = max(ldeg, rdeg) / 3;
        assert!(2 * split_deg + 1 < max(ldeg, rdeg));
        let part_target_deg = max(split_deg, target_deg.saturating_sub(split_deg));

        let lhs_upper = poly_ring.from_terms(
            poly_ring
                .terms(&lhs)
                .filter(|(_, i)| *i >= split_deg)
                .map(|(c, i)| (poly_ring.base_ring().clone_el(c), i - split_deg)),
        );
        let mut lhs_lower = lhs;
        poly_ring.truncate_monomials(&mut lhs_lower, split_deg);
        let rhs_upper = poly_ring.from_terms(
            poly_ring
                .terms(&rhs)
                .filter(|(_, i)| *i >= split_deg)
                .map(|(c, i)| (poly_ring.base_ring().clone_el(c), i - split_deg)),
        );
        let mut rhs_lower = rhs;
        poly_ring.truncate_monomials(&mut rhs_lower, split_deg);

        log_progress!(
            controller,
            "({},{})",
            max(
                poly_ring.degree(&lhs_upper).unwrap(),
                poly_ring.degree(&rhs_upper).unwrap()
            ),
            part_target_deg
        );
        let (fst_transform, [mut lhs_rest, mut rhs_rest]) = fast_poly_eea_impl(
            poly_ring,
            lhs_upper,
            rhs_upper,
            part_target_deg,
            controller.clone(),
            memory,
        );
        poly_ring.mul_assign_monomial(&mut lhs_rest, split_deg);
        poly_ring.mul_assign_monomial(&mut rhs_rest, split_deg);

        lhs_rest = poly_ring.fma(&fst_transform[0], &lhs_lower, lhs_rest);
        lhs_rest = poly_ring.fma(&fst_transform[1], &rhs_lower, lhs_rest);
        rhs_rest = poly_ring.fma(&fst_transform[2], &lhs_lower, rhs_rest);
        rhs_rest = poly_ring.fma(&fst_transform[3], &rhs_lower, rhs_rest);

        log_progress!(
            controller,
            "({},{})",
            max(
                poly_ring.degree(&lhs_rest).unwrap_or(0),
                poly_ring.degree(&rhs_rest).unwrap_or(0)
            ),
            target_deg
        );
        let (snd_transform, rest) = fast_poly_eea_impl(poly_ring, lhs_rest, rhs_rest, target_deg, controller, memory);

        // multiply snd_transform * fst_transform
        let mut result = [poly_ring.zero(), poly_ring.zero(), poly_ring.zero(), poly_ring.zero()];
        dispatch_strassen_impl::<_, _, _, _, false, _, _, _>(
            1,
            0,
            TransposableSubmatrix::from(Submatrix::from_1d(&snd_transform, 2, 2)),
            TransposableSubmatrix::from(Submatrix::from_1d(&fst_transform, 2, 2)),
            TransposableSubmatrixMut::from(SubmatrixMut::from_1d(&mut result, 2, 2)),
            poly_ring,
            memory,
        );

        return (result, rest);
    }

    if poly_ring.is_zero(&lhs) {
        return (poly_ring.zero(), poly_ring.one(), rhs);
    } else if poly_ring.is_zero(&rhs) {
        return (poly_ring.one(), poly_ring.zero(), lhs);
    }

    controller.run_computation(
        format_args!(
            "fast_poly_eea(ldeg={}, rdeg={})",
            poly_ring.degree(&lhs).unwrap(),
            poly_ring.degree(&rhs).unwrap()
        ),
        |controller| {
            let ([s1, t1, s2, t2], [a1, a2]) = fast_poly_eea_impl(
                poly_ring,
                lhs,
                rhs,
                0,
                controller,
                &mut (0..strassen_mem_size(false, 2, 0))
                    .map(|_| poly_ring.zero())
                    .collect::<Vec<_>>(),
            );
            if poly_ring.is_zero(&a1) {
                return (s2, t2, a2);
            } else {
                assert!(poly_ring.is_zero(&a2));
                return (s1, t1, a1);
            }
        },
    )
}

/// Computes the gcd of two polynomials over a finite and reduced ring.
///
/// This is well-defined, since a finite reduced ring is always a product of
/// finite fields.
///
/// If the ring is not reduced, this function may fail and return `Err(nil)`, where
/// `nil` is a nilpotent element of the ring. However, as long as the gcd of `lhs` and
/// `rhs` exists, this function may alternatively return it, even in cases where the ring is
/// not reduced (note however that over a non-reduced ring, the gcd does not always exist).
#[stability::unstable(feature = "enable")]
pub fn poly_gcd_finite_reduced<P>(
    poly_ring: P,
    mut lhs: El<P>,
    mut rhs: El<P>,
) -> Result<El<P>, El<<P::Type as RingExtension>::BaseRing>>
where
    P: RingStore + Copy,
    P::Type: PolyRing,
    <<P::Type as RingExtension>::BaseRing as RingStore>::Type: FiniteRing + PrincipalIdealRing,
{
    while !poly_ring.is_zero(&rhs) {
        match poly_div_rem_finite_reduced(poly_ring, poly_ring.clone_el(&lhs), &rhs) {
            Ok((_q, r)) => {
                lhs = r;
                std::mem::swap(&mut lhs, &mut rhs);
            }
            Err(PolyDivRemReducedError::NotReduced(nilpotent)) => return Err(nilpotent),
            Err(PolyDivRemReducedError::NotDivisibleByContent(content_rhs)) => {
                // we find a decomposition `R ~ R/c x R/Ann(c)` for the content `c` of `rhs`.
                // clearly the gcd must be `lhs` modulo `c` (since `rhs = 0 mod c`); furthermore,
                // modulo `Ann(c)` the content `c` is a unit, so `gcd(lhs, rhs) = gcd(c * lhs, rhs)
                // mod Ann(c)`
                let content_ann = poly_ring.base_ring().annihilator(&content_rhs);
                if !poly_ring
                    .base_ring()
                    .is_unit(&poly_ring.base_ring().ideal_gen(&content_rhs, &content_ann))
                {
                    return Err(poly_ring
                        .base_ring()
                        .annihilator(&poly_ring.base_ring().ideal_gen(&content_rhs, &content_ann)));
                }
                let mod_content_gcd =
                    poly_gcd_finite_reduced(poly_ring, poly_ring.inclusion().mul_ref_map(&lhs, &content_rhs), rhs)?;
                debug_assert!(
                    poly_ring
                        .terms(&mod_content_gcd)
                        .all(|(c, _)| poly_ring.base_ring().divides(c, &content_rhs))
                );
                return Ok(poly_ring.add(poly_ring.inclusion().mul_ref_map(&lhs, &content_ann), mod_content_gcd));
            }
        }
    }
    return Ok(lhs);
}

#[cfg(test)]
use crate::algorithms::poly_div::poly_checked_div_finite_reduced;
#[cfg(test)]
use crate::rings::poly::dense_poly::DensePolyRing;
#[cfg(test)]
use crate::rings::zn::zn_64;
#[cfg(test)]
use crate::rings::zn::zn_rns::*;
#[cfg(test)]
use crate::rings::zn::*;
#[cfg(test)]
use crate::seq::VectorView;

#[test]
fn test_poly_gcd_finite_reduced() {
    let base_ring = Zn::new(
        [5, 7, 11, 13]
            .into_iter()
            .map(|p| zn_64::Zn::new(p).as_field().ok().unwrap())
            .collect(),
        StaticRing::<i64>::RING,
    );
    let poly_ring = DensePolyRing::new(&base_ring, "X");
    let component_poly_rings: [_; 4] = std::array::from_fn(|i| DensePolyRing::new(base_ring.at(i), "X"));

    let [f0, g0, expected0] = component_poly_rings[0].with_wrapped_indeterminate(|X| {
        [
            (X.pow_ref(2) + 2) * (X.pow_ref(3) + X + 1),
            (X + 1) * (X + 2) * (X.pow_ref(3) + X + 1),
            X.pow_ref(3) + X + 1,
        ]
    });

    let f1 = component_poly_rings[1].zero();
    let [g1, expected1] =
        component_poly_rings[1].with_wrapped_indeterminate(|X| [X.pow_ref(3) + X + 1, X.pow_ref(3) + X + 1]);

    let f2 = component_poly_rings[2].int_hom().map(1);
    let g2 = component_poly_rings[2].zero();
    let expected2 = component_poly_rings[2].one();

    let f3 = component_poly_rings[3].zero();
    let g3 = component_poly_rings[3].zero();
    let expected3 = component_poly_rings[3].zero();

    fn reconstruct<'a, 'b, R>(
        polys: [El<DensePolyRing<&'a R>>; 4],
        poly_rings: &[DensePolyRing<&'a R>; 4],
        poly_ring: &DensePolyRing<&'b Zn<R, StaticRing<i64>>>,
    ) -> El<DensePolyRing<&'b Zn<R, StaticRing<i64>>>>
    where
        R: RingStore,
        R::Type: ZnRing + CanHomFrom<StaticRingBase<i64>>,
    {
        poly_ring.from_terms((0..10).map(|i| {
            (
                poly_ring.base_ring().from_congruence(
                    polys
                        .iter()
                        .zip(poly_rings.iter())
                        .map(|(f, P)| P.base_ring().clone_el(P.coefficient_at(f, i))),
                ),
                i,
            )
        }))
    }

    let f = reconstruct([f0, f1, f2, f3], &component_poly_rings, &poly_ring);
    let g = reconstruct([g0, g1, g2, g3], &component_poly_rings, &poly_ring);
    let expected = reconstruct(
        [expected0, expected1, expected2, expected3],
        &component_poly_rings,
        &poly_ring,
    );
    let actual = poly_gcd_finite_reduced(&poly_ring, poly_ring.clone_el(&f), poly_ring.clone_el(&g))
        .ok()
        .unwrap();

    assert!(
        poly_checked_div_finite_reduced(&poly_ring, poly_ring.clone_el(&actual), poly_ring.clone_el(&expected))
            .ok()
            .unwrap()
            .is_some()
    );
    assert!(
        poly_checked_div_finite_reduced(&poly_ring, poly_ring.clone_el(&expected), poly_ring.clone_el(&actual))
            .ok()
            .unwrap()
            .is_some()
    );
}

#[test]
fn test_partial_eea() {
    let field = zn_64::Zn::new(65537).as_field().ok().unwrap();
    let poly_ring = DensePolyRing::new(field, "X");
    let [f, g] = poly_ring.with_wrapped_indeterminate(|X| {
        [
            X.pow_ref(9) - X.pow_ref(7) + 3 * X.pow_ref(2) - 1,
            X.pow_ref(10) + X.pow_ref(6) + 1,
        ]
    });

    for k in (1..10).rev() {
        let ([s1, t1, s2, t2], [a, b]) = partial_eea(&poly_ring, poly_ring.clone_el(&f), poly_ring.clone_el(&g), k);
        assert_el_eq!(
            &poly_ring,
            poly_ring.add(poly_ring.mul_ref(&s1, &f), poly_ring.mul_ref(&t1, &g)),
            &a
        );
        assert_el_eq!(
            &poly_ring,
            poly_ring.add(poly_ring.mul_ref(&s2, &f), poly_ring.mul_ref(&t2, &g)),
            &b
        );
        assert_eq!(k, poly_ring.degree(&a).unwrap());
        assert_eq!(k - 1, poly_ring.degree(&b).unwrap());
        assert!(poly_ring.degree(&s1).is_none() || poly_ring.degree(&s1).unwrap() < 10 - poly_ring.degree(&a).unwrap());
        assert!(poly_ring.degree(&t1).is_none() || poly_ring.degree(&t1).unwrap() < 9 - poly_ring.degree(&a).unwrap());
        assert!(poly_ring.degree(&s2).is_none() || poly_ring.degree(&s2).unwrap() < 10 - poly_ring.degree(&b).unwrap());
        assert!(poly_ring.degree(&t2).is_none() || poly_ring.degree(&t2).unwrap() < 9 - poly_ring.degree(&b).unwrap());
    }
}

#[test]
fn test_fast_poly_eea() {
    let field = zn_64::Zn::new(65537).as_field().ok().unwrap();
    let poly_ring = DensePolyRing::new(field, "X");
    let [f, g] = poly_ring.with_wrapped_indeterminate(|X| {
        [
            X.pow_ref(90) - X.pow_ref(70) + 3 * X.pow_ref(20) - 1,
            X.pow_ref(100) + X.pow_ref(60) + 1,
        ]
    });

    let (s, t, d) = fast_poly_eea(&poly_ring, poly_ring.clone_el(&f), poly_ring.clone_el(&g), LOG_PROGRESS);
    assert!(poly_ring.is_unit(&d));
    assert_el_eq!(
        &poly_ring,
        &d,
        poly_ring.add(poly_ring.mul_ref(&s, &f), poly_ring.mul_ref(&t, &g))
    );

    let [f, g] = poly_ring.with_wrapped_indeterminate(|X| {
        [
            X.pow_ref(9) - X.pow_ref(7) + 3 * X.pow_ref(2) - 1,
            X.pow_ref(100) + X.pow_ref(60) + 1,
        ]
    });

    let (s, t, d) = fast_poly_eea(&poly_ring, poly_ring.clone_el(&f), poly_ring.clone_el(&g), LOG_PROGRESS);
    assert!(poly_ring.is_unit(&d));
    assert_el_eq!(
        &poly_ring,
        &d,
        poly_ring.add(poly_ring.mul_ref(&s, &f), poly_ring.mul_ref(&t, &g))
    );
}