diff options
author | Tels <nospam-abuse@bloodgate.com> | 2007-06-23 17:30:49 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-06-25 09:45:21 +0000 |
commit | 20e2035c2a5c754e2d8e5f3d8d774f3f2cb53c64 (patch) | |
tree | 4b40cc6f7471a9f7c39a8f344eedb0e6d0055e25 /t | |
parent | 47b9f7f4a758ed9d43b090b96c19946a1fe8a1e9 (diff) | |
download | perl-20e2035c2a5c754e2d8e5f3d8d774f3f2cb53c64.tar.gz |
[Caffeine-Patch] Math::BigInt 1.87 take 11 (add batan2, fix batan, speedup bpi()
Message-Id: <200706231530.49865@bloodgate.com>
p4raw-id: //depot/perl@31459
Diffstat (limited to 't')
-rw-r--r-- | t/lib/Math/BigInt/BareCalc.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/lib/Math/BigInt/BareCalc.pm b/t/lib/Math/BigInt/BareCalc.pm index e20fd6edf5..0bbe861cf8 100644 --- a/t/lib/Math/BigInt/BareCalc.pm +++ b/t/lib/Math/BigInt/BareCalc.pm @@ -8,7 +8,7 @@ require Exporter; use vars qw/@ISA $VERSION/; @ISA = qw(Exporter); -$VERSION = '0.04'; +$VERSION = '0.05'; sub api_version () { 1; } @@ -16,14 +16,14 @@ sub api_version () { 1; } # uses Calc, but only features the strictly necc. methods. -use Math::BigInt::Calc '0.48'; +use Math::BigInt::Calc '0.51'; BEGIN { no strict 'refs'; foreach (qw/ base_len new zero one two ten copy str num add sub mul div mod inc dec - acmp len digit zeros + acmp alen len digit zeros rsft lsft fac pow gcd log_int sqrt root is_zero is_one is_odd is_even is_one is_two is_ten check |