mhogrefe/malachite

`is_probably_prime` from rug

Opened this issue · 2 comments

Is there a function in malachite that is similar to rug::Integer::is_probably_prime? If not, how would we implement it?

There isn't currently prime testing functionality in Malachite. I'm going to implement it in the future by translating FLINT's primality testing code, including everything in this directory, as well as the files starting with "is_prime" and "is_probabprime" here.

Nice, that would be useful! Thank you.