pub fn pollard_rho(n: &BigInt, max_iters: u64) -> Option<(BigInt, BigInt)>Expand description
Pollard’s rho (f(x) = x² + 1, Floyd cycle detection): the general-purpose structural probe. Expected
O(N^{1/4}), so it crushes moderate semiprimes but is bounded out on a large sound modulus.