Expand description
Contains an implementation of integer factoring and related utilities, delegating
to ec_factor
.
Functionsยง
- factor
- Factors the given integer.
- is_
prime_ power - If the given integer is a power of a prime
p
, returnsSome((p, ln(n)/ln(p)))
.