3 # This library is no longer being maintained, and is included for backward
4 # compatibility with Perl 4 programs which may require it.
6 # In particular, this should not be used as an example of modern Perl
7 # programming techniques.
8 # This legacy library is deprecated and will be removed in a future
11 # Suggested alternative: Math::BigInt
13 warn( "The 'bigint.pl' legacy library is deprecated and will be"
14 . " removed in the next major release of perl. Please use the"
15 . " Math::BigInt module instead." );
17 # arbitrary size integer math package
21 # Canonical Big integer value are strings of the form
22 # /^[+-]\d+$/ with leading zeros suppressed
23 # Input values to these routines may be strings of the form
24 # /^\s*[+-]?[\d\s]+$/.
26 # '+0' canonical zero value
27 # ' -123 123 123' canonical value '-123123123'
28 # '1 23 456 7890' canonical value '+1234567890'
29 # Output values always in canonical form
31 # Actual math is done in an internal format consisting of an array
32 # whose first element is the sign (/^[+-]$/) and whose remaining
33 # elements are base 100000 digits with the least significant digit first.
34 # The string 'NaN' is used to represent the result when input arguments
35 # are not numbers, as well as the result of dividing by zero
37 # routines provided are:
39 # bneg(BINT) return BINT negation
40 # babs(BINT) return BINT absolute value
41 # bcmp(BINT,BINT) return CODE compare numbers (undef,<0,=0,>0)
42 # badd(BINT,BINT) return BINT addition
43 # bsub(BINT,BINT) return BINT subtraction
44 # bmul(BINT,BINT) return BINT multiplication
45 # bdiv(BINT,BINT) return (BINT,BINT) division (quo,rem) just quo if scalar
46 # bmod(BINT,BINT) return BINT modulus
47 # bgcd(BINT,BINT) return BINT greatest common divisor
48 # bnorm(BINT) return BINT normalization
51 # overcome a floating point problem on certain osnames (posix-bc, os390)
54 my $use_mult = int($x*1e-5)*1e5 == $x ? 1 : 0;
60 # normalize string form of number. Strip leading zeros. Strip any
61 # white space and add a sign, if missing.
62 # Strings that are not numbers result the value 'NaN'.
64 sub main'bnorm { #(num_str) return num_str
66 s/\s+//g; # strip white space
67 if (s/^([+-]?)0*(\d+)$/$1$2/) { # test if number
68 substr($_,$[,0) = '+' unless $1; # Add missing sign
76 # Convert a number from string format to internal base 100000 format.
77 # Assumes normalized value as input.
78 sub internal { #(num_str) return int_num_array
80 ($is,$il) = (substr($d,$[,1),length($d)-2);
82 ($is, reverse(unpack("a" . ($il%5+1) . ("a5" x ($il/5)), $d)));
85 # Convert a number from internal base 100000 format to string format.
86 # This routine scribbles all over input array.
87 sub external { #(int_num_array) return num_str
89 grep($_ > 9999 || ($_ = substr('0000'.$_,-5)), @_); # zero pad
90 &'bnorm(join('', $es, reverse(@_))); # reverse concat and normalize
94 sub main'bneg { #(num_str) return num_str
95 local($_) = &'bnorm(@_);
96 vec($_,0,8) ^= ord('+') ^ ord('-') unless $_ eq '+0';
97 s/^./N/ unless /^[-+]/; # works both in ASCII and EBCDIC
101 # Returns the absolute value of the input.
102 sub main'babs { #(num_str) return num_str
106 sub abs { # post-normalized abs for internal use
112 # Compares 2 values. Returns one of undef, <0, =0, >0. (suitable for sort)
113 sub main'bcmp { #(num_str, num_str) return cond_code
114 local($x,$y) = (&'bnorm($_[$[]),&'bnorm($_[$[+1]));
117 } elsif ($y eq 'NaN') {
124 sub cmp { # post-normalized compare for internal use
125 local($cx, $cy) = @_;
126 return 0 if ($cx eq $cy);
128 local($sx, $sy) = (substr($cx, 0, 1), substr($cy, 0, 1));
132 return 1 if ($sy eq '-' || $cy eq '+0');
133 $ld = length($cx) - length($cy);
136 } else { # $sx eq '-'
137 return -1 if ($sy eq '+');
138 $ld = length($cy) - length($cx);
145 sub main'badd { #(num_str, num_str) return num_str
146 local(*x, *y); ($x, $y) = (&'bnorm($_[$[]),&'bnorm($_[$[+1]));
149 } elsif ($y eq 'NaN') {
152 @x = &internal($x); # convert to internal form
154 local($sx, $sy) = (shift @x, shift @y); # get signs
156 &external($sx, &add(*x, *y)); # if same sign add
158 ($x, $y) = (&abs($x),&abs($y)); # make abs
159 if (&cmp($y,$x) > 0) {
160 &external($sy, &sub(*y, *x));
162 &external($sx, &sub(*x, *y));
168 sub main'bsub { #(num_str, num_str) return num_str
169 &'badd($_[$[],&'bneg($_[$[+1]));
172 # GCD -- Euclids algorithm Knuth Vol 2 pg 296
173 sub main'bgcd { #(num_str, num_str) return num_str
174 local($x,$y) = (&'bnorm($_[$[]),&'bnorm($_[$[+1]));
175 if ($x eq 'NaN' || $y eq 'NaN') {
178 ($x, $y) = ($y,&'bmod($x,$y)) while $y ne '+0';
183 # routine to add two base 1e5 numbers
184 # stolen from Knuth Vol 2 Algorithm A pg 231
185 # there are separate routines to add and sub as per Kunth pg 233
186 sub add { #(int_num_array, int_num_array) return int_num_array
190 last unless @y || $car;
191 $x -= 1e5 if $car = (($x += shift(@y) + $car) >= 1e5) ? 1 : 0;
195 $y -= 1e5 if $car = (($y += $car) >= 1e5) ? 1 : 0;
200 # subtract base 1e5 numbers -- stolen from Knuth Vol 2 pg 232, $x > $y
201 sub sub { #(int_num_array, int_num_array) return int_num_array
202 local(*sx, *sy) = @_;
205 last unless @y || $bar;
206 $sx += 1e5 if $bar = (($sx -= shift(@sy) + $bar) < 0);
211 # multiply two numbers -- stolen from Knuth Vol 2 pg 233
212 sub main'bmul { #(num_str, num_str) return num_str
213 local(*x, *y); ($x, $y) = (&'bnorm($_[$[]), &'bnorm($_[$[+1]));
216 } elsif ($y eq 'NaN') {
221 local($signr) = (shift @x ne shift @y) ? '-' : '+';
224 ($car, $cty) = (0, $[);
226 $prod = $x * $y + $prod[$cty] + $car;
229 $prod - ($car = int($prod * 1e-5)) * 1e5;
233 $prod - ($car = int($prod / 1e5)) * 1e5;
236 $prod[$cty] += $car if $car;
239 &external($signr, @x, @prod);
244 sub main'bmod { #(num_str, num_str) return num_str
248 sub main'bdiv { #(dividend: num_str, divisor: num_str) return num_str
249 local (*x, *y); ($x, $y) = (&'bnorm($_[$[]), &'bnorm($_[$[+1]));
250 return wantarray ? ('NaN','NaN') : 'NaN'
251 if ($x eq 'NaN' || $y eq 'NaN' || $y eq '+0');
252 return wantarray ? ('+0',$x) : '+0' if (&cmp(&abs($x),&abs($y)) < 0);
253 @x = &internal($x); @y = &internal($y);
255 $sr = (shift @x ne shift @y) ? '-' : '+';
256 $car = $bar = $prd = 0;
257 if (($dd = int(1e5/($y[$#y]+1))) != 1) {
259 $x = $x * $dd + $car;
261 $x -= ($car = int($x * 1e-5)) * 1e5;
264 $x -= ($car = int($x / 1e5)) * 1e5;
267 push(@x, $car); $car = 0;
269 $y = $y * $dd + $car;
271 $y -= ($car = int($y * 1e-5)) * 1e5;
274 $y -= ($car = int($y / 1e5)) * 1e5;
281 @q = (); ($v2,$v1) = @y[-2,-1];
283 ($u2,$u1,$u0) = @x[-3..-1];
284 $q = (($u0 == $v1) ? 99999 : int(($u0*1e5+$u1)/$v1));
285 --$q while ($v2*$q > ($u0*1e5+$u1-$q*$v1)*1e5+$u2);
287 ($car, $bar) = (0,0);
288 for ($y = $[, $x = $#x-$#y+$[-1; $y <= $#y; ++$y,++$x) {
289 $prd = $q * $y[$y] + $car;
291 $prd -= ($car = int($prd * 1e-5)) * 1e5;
294 $prd -= ($car = int($prd / 1e5)) * 1e5;
296 $x[$x] += 1e5 if ($bar = (($x[$x] -= $prd + $bar) < 0));
298 if ($x[$#x] < $car + $bar) {
300 for ($y = $[, $x = $#x-$#y+$[-1; $y <= $#y; ++$y,++$x) {
302 if ($car = (($x[$x] += $y[$y] + $car) > 1e5));
306 pop(@x); unshift(@q, $q);
312 for $x (reverse @x) {
313 $prd = $car * 1e5 + $x;
314 $car = $prd - ($tmp = int($prd / $dd)) * $dd;
321 (&external($sr, @q), &external($srem, @d, $zero));