Quellcode durchsuchen

Avoid large intermediate product in LCM

Mikhail Hogrefe vor 7 Jahren
Ursprung
Commit
56a029b20f
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      bigint/src/biguint.rs

+ 1 - 1
bigint/src/biguint.rs

@@ -955,7 +955,7 @@ impl Integer for BigUint {
     /// Calculates the Lowest Common Multiple (LCM) of the number and `other`.
     /// Calculates the Lowest Common Multiple (LCM) of the number and `other`.
     #[inline]
     #[inline]
     fn lcm(&self, other: &BigUint) -> BigUint {
     fn lcm(&self, other: &BigUint) -> BigUint {
-        ((self * other) / self.gcd(other))
+        self / self.gcd(other) * other
     }
     }
 
 
     /// Deprecated, use `is_multiple_of` instead.
     /// Deprecated, use `is_multiple_of` instead.