| 75 | } |
| 76 | |
| 77 | BigUint math::Invert(BigUint a, BigUint n) { |
| 78 | BigUint result; |
| 79 | mpz_invert(result.get_mpz_t(), a.get_mpz_t(), n.get_mpz_t()); |
| 80 | return result; |
| 81 | } |
| 82 | |
| 83 | BigUint math::Lcm(BigUint a, BigUint b) { |
| 84 | return a * b / Gcd(a, b); |
nothing calls this directly
no test coverage detected