Trait num_bigint_dig::traits::ExtendedGcd
source · pub trait ExtendedGcd<R: Sized>: Sized {
// Required method
fn extended_gcd(self, other: R) -> (BigInt, BigInt, BigInt);
}
Expand description
Generic trait to implement extended GCD. Calculates the extended eucledian algorithm. See https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm for details. The returned values are
- greatest common divisor (1)
- Bezout coefficients (2)