You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On 2022-06-06 @recmo wrote in 4c74c09 “Merge pull request #110 from recmo/gcd”:
Would this be faster using extended binary gcd?
We shadow q for readability.
}/// Compute the Lehmer update matrix for small values.
///
/// This is essentialy Euclids extended GCD algorithm for 64 bits.
// OPT:Would this be faster using extended binary gcd?
// We shadow q for readability.#[allow(clippy::shadow_unrelated)]fn lehmer_small(mutr0:u64,mutr1:u64) -> Matrix{debug_assert!(r0 >= r1);if r1 == 0_u64{returnMatrix::IDENTITY;
On 2022-06-06 @recmo wrote in
4c74c09
“Merge pull request #110 from recmo/gcd”:Would this be faster using extended binary gcd?
We shadow q for readability.
From
src/algorithms/gcd/gcd_old.rs:126
The text was updated successfully, but these errors were encountered: