You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be a minor inconsistency between Math::Prime::Util::sieve_prime_cluster() and Math::Prime::Util::GMP::sieve_prime_cluster() on certain inputs.
Example:
use 5.010;
use Math::Prime::Util qw();
use Math::Prime::Util::GMP qw();
sayjoin('', Math::Prime::Util::sieve_prime_cluster(3,6,8));
sayjoin('', Math::Prime::Util::GMP::sieve_prime_cluster(3,6,8));
Output:
3 5
5
The text was updated successfully, but these errors were encountered:
trizen
added a commit
to trizen/sidef
that referenced
this issue
Dec 24, 2024
There seems to be a minor inconsistency between
Math::Prime::Util::sieve_prime_cluster()
andMath::Prime::Util::GMP::sieve_prime_cluster()
on certain inputs.Example:
Output:
The text was updated successfully, but these errors were encountered: