libmath-prime-util-perl 0.36-1 source package in Ubuntu
Changelog
libmath-prime-util-perl (0.36-1) unstable; urgency=medium * Imported Upstream version 0.36 * Update copyright years for upstream files * Add copyright stanza for added ppport.h * Update copyright years for debian/* packaging files * Add NEWS entry for 0.36 to document API Changes * Drop spelling.patch patch (applied upstream) -- Salvatore Bonaccorso <email address hidden> Tue, 14 Jan 2014 21:34:34 +0100
Upload details
- Uploaded by:
- Debian Perl Group
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- any
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section |
---|
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libmath-prime-util-perl_0.36-1.dsc | 2.2 KiB | d9c771b5ff06f71773e4406e5db1519f9ed4a08aa65130fbe181e380bb453013 |
libmath-prime-util-perl_0.36.orig.tar.gz | 367.3 KiB | 157335878f91ada095c4449ab4d2579d422fc6f670f3fe4023c3ff921d2abfbc |
libmath-prime-util-perl_0.36-1.debian.tar.gz | 4.1 KiB | 7c416f9f8bf580d7fe862332fa788e30614edb8f6d705f8321d84145ca29e5b5 |
Available diffs
- diff from 0.35-1 to 0.36-1 (200.2 KiB)
No changes file available.
Binary packages built by this source
- libmath-prime-util-perl: utilities related to prime numbers, including fast sieves and factoring
Math::Prime::Util is a set of perl utilities related to prime
numbers. These include multiple sieving methods, is_prime,
prime_count, nth_prime, approximations and bounds for the prime_count
and nth prime, next_prime and prev_prime, factoring utilities, and
more.
.
The default sieving and factoring are intended to be (and currently are) the
fastest on CPAN, including Math::Prime::XS, Math::Prime::FastSieve,
Math::Factor::XS, Math::Prime::TiedArray, Math::Big::Factors,
Math::Factoring, and Math::Primality (when the GMP module is available). For
numbers in the 10-20 digit range, it is often orders of magnitude faster.
Typically it is faster than Math::Pari for 64-bit operations.
.
All operations support both Perl UV's (32-bit or 64-bit) and bignums. It
requires no external software for big number support, as there are Perl
implementations included that solely use Math::BigInt and Math::BigFloat.
However, performance will be improved for most big number functions by
installing Math::Prime::Util:: GMP, and is definitely recommended if you do
many bignum operations. Also look into Math::Pari as an alternative.