11 releases (7 breaking)
0.8.0 | Feb 9, 2022 |
---|---|
0.7.0 | Feb 1, 2022 |
0.6.0 | Jan 31, 2022 |
0.5.1 | Jan 30, 2022 |
0.1.1 | Jan 27, 2022 |
#1617 in Math
24 downloads per month
36KB
682 lines
A Gaussian integer is a complex number whose real and imaginary parts are both integers.
gaussiant
provides the GaussianInt
type,
which is a wrapper around num_complex::Complex
with additional methods for number theoretical computation.
Example
If a prime number p is congruent to 3 modulo 4, then it is a Gaussian prime (Wikipedia).
use gaussiant::{GaussianInt, gaussint};
fn main() {
let p = gaussint!(7);
assert_eq!(
p.congruent(gaussint!(3), gaussint!(4)),
p.is_gaussian_prime()
);
}
Dependencies
~1–3MB
~57K SLoC