diff options
author | Peter John Acklam <pjacklam@online.no> | 2011-02-18 07:39:40 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-02-18 07:39:40 -0800 |
commit | de1ac46b8df09e847eed38152e03f6742b4af9de (patch) | |
tree | ce5ebfab9da328b03f108b114e0c7128b50fb138 /dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm | |
parent | bd0e971a15332cc9726bb012b97be7b0f6cadd6f (diff) | |
download | perl-de1ac46b8df09e847eed38152e03f6742b4af9de.tar.gz |
Update Math::BigInt to CPAN version 1.992
dist/Math-BigInt/lib/Math/BigFloat.pm:
- Increment version number.
dist/Math-BigInt/lib/Math/BigInt.pm:
- Increment version number.
- Make from_hex(), from_oct(), and behave more like hex() and oct()
in the Perl core, and make from_bin() consistent with from_hex()
and from_oct(). This is related to RT #58954.
dist/Math-BigInt/lib/Math/BigInt/Calc.pm:
- Increment version number.
- Make _rem() modify first input arg always, not just sometimes.
- Make _modinv() more consistent with the _modinv() method in other
libraries (Math::BigInt::GMP, etc.)
- In _nok(), use symmetry property nok(n,k) = nok(n,n-k). This cuts
computation time tremendously when n and k are large.
- In _gcd(), quickly handle zero cases, avoid code duplication, and
always modify the first input argument in-place.
- Clean up code and add more code comments.
- Fix typos.
dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm:
- Increment version number.
dist/Math-BigInt/t/bigintpm.inc:
- Modify tests to something that still fails.
dist/Math-BigInt/t/upgrade.inc:
- Modify tests to something that still fails.
Diffstat (limited to 'dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm')
-rw-r--r-- | dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm index 810665d55f..3f2aa3bdbe 100644 --- a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm +++ b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm @@ -5,7 +5,7 @@ use strict; # use warnings; # dont use warnings for older Perls use vars qw/$VERSION/; -$VERSION = '1.991'; +$VERSION = '1.992'; package Math::BigInt; |