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 # arbitrary size integer math package
17 # Canonical Big integer value are strings of the form
18 # /^[+-]\d+$/ with leading zeros suppressed
19 # Input values to these routines may be strings of the form
20 # /^\s*[+-]?[\d\s]+$/.
22 # '+0' canonical zero value
23 # ' -123 123 123' canonical value '-123123123'
24 # '1 23 456 7890' canonical value '+1234567890'
25 # Output values always in canonical form
27 # Actual math is done in an internal format consisting of an array
28 # whose first element is the sign (/^[+-]$/) and whose remaining
29 # elements are base 100000 digits with the least significant digit first.
30 # The string 'NaN' is used to represent the result when input arguments
31 # are not numbers, as well as the result of dividing by zero
33 # routines provided are:
35 # bneg(BINT) return BINT negation
36 # babs(BINT) return BINT absolute value
37 # bcmp(BINT,BINT) return CODE compare numbers (undef,<0,=0,>0)
38 # badd(BINT,BINT) return BINT addition
39 # bsub(BINT,BINT) return BINT subtraction
40 # bmul(BINT,BINT) return BINT multiplication
41 # bdiv(BINT,BINT) return (BINT,BINT) division (quo,rem) just quo if scalar
42 # bmod(BINT,BINT) return BINT modulus
43 # bgcd(BINT,BINT) return BINT greatest common divisor
44 # bnorm(BINT) return BINT normalization
47 # overcome a floating point problem on certain osnames (posix-bc, os390)
50 my $use_mult = int($x*1e-5)*1e5 == $x ? 1 : 0;
56 # normalize string form of number. Strip leading zeros. Strip any
57 # white space and add a sign, if missing.
58 # Strings that are not numbers result the value 'NaN'.
60 sub main'bnorm { #(num_str) return num_str
62 s/\s+//g; # strip white space
63 if (s/^([+-]?)0*(\d+)$/$1$2/) { # test if number
64 substr($_,$[,0) = '+' unless $1; # Add missing sign
72 # Convert a number from string format to internal base 100000 format.
73 # Assumes normalized value as input.
74 sub internal { #(num_str) return int_num_array
76 ($is,$il) = (substr($d,$[,1),length($d)-2);
78 ($is, reverse(unpack("a" . ($il%5+1) . ("a5" x ($il/5)), $d)));
81 # Convert a number from internal base 100000 format to string format.
82 # This routine scribbles all over input array.
83 sub external { #(int_num_array) return num_str
85 grep($_ > 9999 || ($_ = substr('0000'.$_,-5)), @_); # zero pad
86 &'bnorm(join('', $es, reverse(@_))); # reverse concat and normalize
90 sub main'bneg { #(num_str) return num_str
91 local($_) = &'bnorm(@_);
92 vec($_,0,8) ^= ord('+') ^ ord('-') unless $_ eq '+0';
93 s/^./N/ unless /^[-+]/; # works both in ASCII and EBCDIC
97 # Returns the absolute value of the input.
98 sub main'babs { #(num_str) return num_str
102 sub abs { # post-normalized abs for internal use
108 # Compares 2 values. Returns one of undef, <0, =0, >0. (suitable for sort)
109 sub main'bcmp { #(num_str, num_str) return cond_code
110 local($x,$y) = (&'bnorm($_[$[]),&'bnorm($_[$[+1]));
113 } elsif ($y eq 'NaN') {
120 sub cmp { # post-normalized compare for internal use
121 local($cx, $cy) = @_;
122 return 0 if ($cx eq $cy);
124 local($sx, $sy) = (substr($cx, 0, 1), substr($cy, 0, 1));
128 return 1 if ($sy eq '-' || $cy eq '+0');
129 $ld = length($cx) - length($cy);
132 } else { # $sx eq '-'
133 return -1 if ($sy eq '+');
134 $ld = length($cy) - length($cx);
141 sub main'badd { #(num_str, num_str) return num_str
142 local(*x, *y); ($x, $y) = (&'bnorm($_[$[]),&'bnorm($_[$[+1]));
145 } elsif ($y eq 'NaN') {
148 @x = &internal($x); # convert to internal form
150 local($sx, $sy) = (shift @x, shift @y); # get signs
152 &external($sx, &add(*x, *y)); # if same sign add
154 ($x, $y) = (&abs($x),&abs($y)); # make abs
155 if (&cmp($y,$x) > 0) {
156 &external($sy, &sub(*y, *x));
158 &external($sx, &sub(*x, *y));
164 sub main'bsub { #(num_str, num_str) return num_str
165 &'badd($_[$[],&'bneg($_[$[+1]));
168 # GCD -- Euclids algorithm Knuth Vol 2 pg 296
169 sub main'bgcd { #(num_str, num_str) return num_str
170 local($x,$y) = (&'bnorm($_[$[]),&'bnorm($_[$[+1]));
171 if ($x eq 'NaN' || $y eq 'NaN') {
174 ($x, $y) = ($y,&'bmod($x,$y)) while $y ne '+0';
179 # routine to add two base 1e5 numbers
180 # stolen from Knuth Vol 2 Algorithm A pg 231
181 # there are separate routines to add and sub as per Kunth pg 233
182 sub add { #(int_num_array, int_num_array) return int_num_array
186 last unless @y || $car;
187 $x -= 1e5 if $car = (($x += shift(@y) + $car) >= 1e5) ? 1 : 0;
191 $y -= 1e5 if $car = (($y += $car) >= 1e5) ? 1 : 0;
196 # subtract base 1e5 numbers -- stolen from Knuth Vol 2 pg 232, $x > $y
197 sub sub { #(int_num_array, int_num_array) return int_num_array
198 local(*sx, *sy) = @_;
201 last unless @y || $bar;
202 $sx += 1e5 if $bar = (($sx -= shift(@sy) + $bar) < 0);
207 # multiply two numbers -- stolen from Knuth Vol 2 pg 233
208 sub main'bmul { #(num_str, num_str) return num_str
209 local(*x, *y); ($x, $y) = (&'bnorm($_[$[]), &'bnorm($_[$[+1]));
212 } elsif ($y eq 'NaN') {
217 local($signr) = (shift @x ne shift @y) ? '-' : '+';
220 ($car, $cty) = (0, $[);
222 $prod = $x * $y + $prod[$cty] + $car;
225 $prod - ($car = int($prod * 1e-5)) * 1e5;
229 $prod - ($car = int($prod / 1e5)) * 1e5;
232 $prod[$cty] += $car if $car;
235 &external($signr, @x, @prod);
240 sub main'bmod { #(num_str, num_str) return num_str
244 sub main'bdiv { #(dividend: num_str, divisor: num_str) return num_str
245 local (*x, *y); ($x, $y) = (&'bnorm($_[$[]), &'bnorm($_[$[+1]));
246 return wantarray ? ('NaN','NaN') : 'NaN'
247 if ($x eq 'NaN' || $y eq 'NaN' || $y eq '+0');
248 return wantarray ? ('+0',$x) : '+0' if (&cmp(&abs($x),&abs($y)) < 0);
249 @x = &internal($x); @y = &internal($y);
251 $sr = (shift @x ne shift @y) ? '-' : '+';
252 $car = $bar = $prd = 0;
253 if (($dd = int(1e5/($y[$#y]+1))) != 1) {
255 $x = $x * $dd + $car;
257 $x -= ($car = int($x * 1e-5)) * 1e5;
260 $x -= ($car = int($x / 1e5)) * 1e5;
263 push(@x, $car); $car = 0;
265 $y = $y * $dd + $car;
267 $y -= ($car = int($y * 1e-5)) * 1e5;
270 $y -= ($car = int($y / 1e5)) * 1e5;
277 @q = (); ($v2,$v1) = @y[-2,-1];
279 ($u2,$u1,$u0) = @x[-3..-1];
280 $q = (($u0 == $v1) ? 99999 : int(($u0*1e5+$u1)/$v1));
281 --$q while ($v2*$q > ($u0*1e5+$u1-$q*$v1)*1e5+$u2);
283 ($car, $bar) = (0,0);
284 for ($y = $[, $x = $#x-$#y+$[-1; $y <= $#y; ++$y,++$x) {
285 $prd = $q * $y[$y] + $car;
287 $prd -= ($car = int($prd * 1e-5)) * 1e5;
290 $prd -= ($car = int($prd / 1e5)) * 1e5;
292 $x[$x] += 1e5 if ($bar = (($x[$x] -= $prd + $bar) < 0));
294 if ($x[$#x] < $car + $bar) {
296 for ($y = $[, $x = $#x-$#y+$[-1; $y <= $#y; ++$y,++$x) {
298 if ($car = (($x[$x] += $y[$y] + $car) > 1e5));
302 pop(@x); unshift(@q, $q);
308 for $x (reverse @x) {
309 $prd = $car * 1e5 + $x;
310 $car = $prd - ($tmp = int($prd / $dd)) * $dd;
317 (&external($sr, @q), &external($srem, @d, $zero));