File Coverage

blib/lib/bigint.pl
Criterion Covered Total %
statement 148 152 97.3
branch 89 94 94.6
condition 20 21 95.2
subroutine 17 17 100.0
pod 0 6 0.0
total 274 290 94.4


line stmt bran cond sub pod time code
1             package bigint;
2             #
3             # This library is no longer being maintained, and is included for backward
4             # compatibility with Perl 4 programs which may require it.
5             #
6             # In particular, this should not be used as an example of modern Perl
7             # programming techniques.
8             #
9             # Suggested alternative: Math::BigInt
10             #
11             # arbitrary size integer math package
12             #
13             # by Mark Biggar
14             #
15             # Canonical Big integer value are strings of the form
16             # /^[+-]\d+$/ with leading zeros suppressed
17             # Input values to these routines may be strings of the form
18             # /^\s*[+-]?[\d\s]+$/.
19             # Examples:
20             # '+0' canonical zero value
21             # ' -123 123 123' canonical value '-123123123'
22             # '1 23 456 7890' canonical value '+1234567890'
23             # Output values always in canonical form
24             #
25             # Actual math is done in an internal format consisting of an array
26             # whose first element is the sign (/^[+-]$/) and whose remaining
27             # elements are base 100000 digits with the least significant digit first.
28             # The string 'NaN' is used to represent the result when input arguments
29             # are not numbers, as well as the result of dividing by zero
30             #
31             # routines provided are:
32             #
33             # bneg(BINT) return BINT negation
34             # babs(BINT) return BINT absolute value
35             # bcmp(BINT,BINT) return CODE compare numbers (undef,<0,=0,>0)
36             # badd(BINT,BINT) return BINT addition
37             # bsub(BINT,BINT) return BINT subtraction
38             # bmul(BINT,BINT) return BINT multiplication
39             # bdiv(BINT,BINT) return (BINT,BINT) division (quo,rem) just quo if scalar
40             # bmod(BINT,BINT) return BINT modulus
41             # bgcd(BINT,BINT) return BINT greatest common divisor
42             # bnorm(BINT) return BINT normalization
43             #
44              
45             # overcome a floating point problem on certain osnames (posix-bc, os390)
46             BEGIN {
47 2     2   669 my $x = 100000.0;
48 2 50       5464 my $use_mult = int($x*1e-5)*1e5 == $x ? 1 : 0;
49             }
50              
51             $zero = 0;
52              
53            
54             # normalize string form of number. Strip leading zeros. Strip any
55             # white space and add a sign, if missing.
56             # Strings that are not numbers result the value 'NaN'.
57              
58             sub main'bnorm { #(num_str) return num_str
59 2982     2982   25345 local($_) = @_;
60 2982         6505 s/\s+//g; # strip white space
61 2982 100       20475 if (s/^([+-]?)0*(\d+)$/$1$2/) { # test if number
62 2944 100       8163 substr($_,0,0) = '+' unless $1; # Add missing sign
63 2944         5077 s/^-0/+0/;
64 2944         13107 $_;
65             } else {
66 38         173 'NaN';
67             }
68             }
69              
70             # Convert a number from string format to internal base 100000 format.
71             # Assumes normalized value as input.
72             sub internal { #(num_str) return int_num_array
73 1448     1448 0 3013 local($d) = @_;
74 1448         3322 ($is,$il) = (substr($d,0,1),length($d)-2);
75 1448         2827 substr($d,0,1) = '';
76 1448         8567 ($is, reverse(unpack("a" . ($il%5+1) . ("a5" x ($il/5)), $d)));
77             }
78              
79             # Convert a number from internal base 100000 format to string format.
80             # This routine scribbles all over input array.
81             sub external { #(int_num_array) return num_str
82 862     862 0 1602 $es = shift;
83 862   66     6658 grep($_ > 9999 || ($_ = substr('0000'.$_,-5)), @_); # zero pad
84 862         3262 &'bnorm(join('', $es, reverse(@_))); # reverse concat and normalize
85             }
86              
87             # Negate input value.
88             sub main'bneg { #(num_str) return num_str
89 43     43   5171 local($_) = &'bnorm(@_);
90 43 100       189 vec($_,0,8) ^= ord('+') ^ ord('-') unless $_ eq '+0';
91 43 100       163 s/^./N/ unless /^[-+]/; # works both in ASCII and EBCDIC
92 43         164 $_;
93             }
94              
95             # Returns the absolute value of the input.
96             sub main'babs { #(num_str) return num_str
97 106     106   4900 &abs(&'bnorm(@_));
98             }
99              
100             sub abs { # post-normalized abs for internal use
101 600     600 0 1217 local($_) = @_;
102 600         1205 s/^-/+/;
103 600         1648 $_;
104             }
105            
106             # Compares 2 values. Returns one of undef, <0, =0, >0. (suitable for sort)
107             sub main'bcmp { #(num_str, num_str) return cond_code
108 207     207   14069 local($x,$y) = (&'bnorm($_[0]),&'bnorm($_[1]));
109 207 100       615 if ($x eq 'NaN') {
    100          
110 2         50 undef;
111             } elsif ($y eq 'NaN') {
112 1         12 undef;
113             } else {
114 204         437 &cmp($x,$y);
115             }
116             }
117              
118             sub cmp { # post-normalized compare for internal use
119 466     466 0 1100 local($cx, $cy) = @_;
120 466 100       1212 return 0 if ($cx eq $cy);
121              
122 404         1157 local($sx, $sy) = (substr($cx, 0, 1), substr($cy, 0, 1));
123 404         647 local($ld);
124              
125 404 100       845 if ($sx eq '+') {
126 394 100 100     1506 return 1 if ($sy eq '-' || $cy eq '+0');
127 381         732 $ld = length($cx) - length($cy);
128 381 100       1270 return $ld if ($ld);
129 138         737 return $cx cmp $cy;
130             } else { # $sx eq '-'
131 10 100       46 return -1 if ($sy eq '+');
132 8         19 $ld = length($cy) - length($cx);
133 8 100       76 return $ld if ($ld);
134 4         53 return $cy cmp $cx;
135             }
136              
137             }
138              
139             sub main'badd { #(num_str, num_str) return num_str
140 266     266   20715 local(*x, *y); ($x, $y) = (&'bnorm($_[0]),&'bnorm($_[1]));
  266         594  
141 266 100       799 if ($x eq 'NaN') {
    100          
142 4         37 'NaN';
143             } elsif ($y eq 'NaN') {
144 2         18 'NaN';
145             } else {
146 260         519 @x = &internal($x); # convert to internal form
147 260         616 @y = &internal($y);
148 260         735 local($sx, $sy) = (shift @x, shift @y); # get signs
149 260 100       621 if ($sx eq $sy) {
150 189         454 &external($sx, &add(*x, *y)); # if same sign add
151             } else {
152 71         164 ($x, $y) = (&abs($x),&abs($y)); # make abs
153 71 100       159 if (&cmp($y,$x) > 0) {
154 34         85 &external($sy, &sub(*y, *x));
155             } else {
156 37         102 &external($sx, &sub(*x, *y));
157             }
158             }
159             }
160             }
161              
162             sub main'bsub { #(num_str, num_str) return num_str
163 37     37   20513 &'badd($_[0],&'bneg($_[1]));
164             }
165              
166             # GCD -- Euclids algorithm Knuth Vol 2 pg 296
167             sub main'bgcd { #(num_str, num_str) return num_str
168 11     11   6388 local($x,$y) = (&'bnorm($_[0]),&'bnorm($_[1]));
169 11 100 100     57 if ($x eq 'NaN' || $y eq 'NaN') {
170 3         32 'NaN';
171             } else {
172 8         29 ($x, $y) = ($y,&'bmod($x,$y)) while $y ne '+0';
173 8         78 $x;
174             }
175             }
176            
177             # routine to add two base 1e5 numbers
178             # stolen from Knuth Vol 2 Algorithm A pg 231
179             # there are separate routines to add and sub as per Kunth pg 233
180             sub add { #(int_num_array, int_num_array) return int_num_array
181 189     189 0 407 local(*x, *y) = @_;
182 189         334 $car = 0;
183 189         448 for $x (@x) {
184 501 100 100     1151 last unless @y || $car;
185 453 100       1665 $x -= 1e5 if $car = (($x += shift(@y) + $car) >= 1e5) ? 1 : 0;
    100          
186             }
187 189         418 for $y (@y) {
188 13 100       41 last unless $car;
189 7 100       33 $y -= 1e5 if $car = (($y += $car) >= 1e5) ? 1 : 0;
    100          
190             }
191 189         704 (@x, @y, $car);
192             }
193              
194             # subtract base 1e5 numbers -- stolen from Knuth Vol 2 pg 232, $x > $y
195             sub sub { #(int_num_array, int_num_array) return int_num_array
196 71     71 0 207 local(*sx, *sy) = @_;
197 71         116 $bar = 0;
198 71         156 for $sx (@sx) {
199 106 100 100     232 last unless @y || $bar;
200 100 100       410 $sx += 1e5 if $bar = (($sx -= shift(@sy) + $bar) < 0);
201             }
202 71         209 @sx;
203             }
204              
205             # multiply two numbers -- stolen from Knuth Vol 2 pg 233
206             sub main'bmul { #(num_str, num_str) return num_str
207 302     302   22374 local(*x, *y); ($x, $y) = (&'bnorm($_[0]), &'bnorm($_[1]));
  302         695  
208 302 100       953 if ($x eq 'NaN') {
    100          
209 2         14 'NaN';
210             } elsif ($y eq 'NaN') {
211 1         8 'NaN';
212             } else {
213 299         622 @x = &internal($x);
214 299         771 @y = &internal($y);
215 299 100       973 local($signr) = (shift @x ne shift @y) ? '-' : '+';
216 299         629 @prod = ();
217 299         730 for $x (@x) {
218 715         1126 ($car, $cty) = (0, 0);
219 715         1220 for $y (@y) {
220 741         1945 $prod = $x * $y + $prod[$cty] + $car;
221 741 50       1289 if ($use_mult) {
222 0         0 $prod[$cty++] =
223             $prod - ($car = int($prod * 1e-5)) * 1e5;
224             }
225             else {
226 741         1988 $prod[$cty++] =
227             $prod - ($car = int($prod / 1e5)) * 1e5;
228             }
229             }
230 715 100       1480 $prod[$cty] += $car if $car;
231 715         1306 $x = shift @prod;
232             }
233 299         734 &external($signr, @x, @prod);
234             }
235             }
236              
237             # modulus
238             sub main'bmod { #(num_str, num_str) return num_str
239 52     52   19277 (&'bdiv(@_))[1];
240             }
241            
242             sub main'bdiv { #(dividend: num_str, divisor: num_str) return num_str
243 188     188   25300 local (*x, *y); ($x, $y) = (&'bnorm($_[0]), &'bnorm($_[1]));
  188         449  
244 188 100 100     1205 return wantarray ? ('NaN','NaN') : 'NaN'
    100 100        
245             if ($x eq 'NaN' || $y eq 'NaN' || $y eq '+0');
246 176 100       393 return wantarray ? ('+0',$x) : '+0' if (&cmp(&abs($x),&abs($y)) < 0);
    100          
247 165         413 @x = &internal($x); @y = &internal($y);
  165         422  
248 165         345 $srem = $y[0];
249 165 100       749 $sr = (shift @x ne shift @y) ? '-' : '+';
250 165         379 $car = $bar = $prd = 0;
251 165 100       624 if (($dd = int(1e5/($y[$#y]+1))) != 1) {
252 162         401 for $x (@x) {
253 1008         1932 $x = $x * $dd + $car;
254 1008 50       1700 if ($use_mult) {
255 0         0 $x -= ($car = int($x * 1e-5)) * 1e5;
256             }
257             else {
258 1008         2037 $x -= ($car = int($x / 1e5)) * 1e5;
259             }
260             }
261 162         441 push(@x, $car); $car = 0;
  162         265  
262 162         300 for $y (@y) {
263 288         456 $y = $y * $dd + $car;
264 288 50       452 if ($use_mult) {
265 0         0 $y -= ($car = int($y * 1e-5)) * 1e5;
266             }
267             else {
268 288         589 $y -= ($car = int($y / 1e5)) * 1e5;
269             }
270             }
271             }
272             else {
273 3         11 push(@x, 0);
274             }
275 165         447 @q = (); ($v2,$v1) = @y[-2,-1];
  165         379  
276 165         411 while ($#x > $#y) {
277 897         2001 ($u2,$u1,$u0) = @x[-3..-1];
278 897 100       2177 $q = (($u0 == $v1) ? 99999 : int(($u0*1e5+$u1)/$v1));
279 897         2416 --$q while ($v2*$q > ($u0*1e5+$u1-$q*$v1)*1e5+$u2);
280 897 100       1689 if ($q) {
281 570         875 ($car, $bar) = (0,0);
282 570         1489 for ($y = 0, $x = $#x-$#y-1; $y <= $#y; ++$y,++$x) {
283 2583         3505 $prd = $q * $y[$y] + $car;
284 2583 50       3454 if ($use_mult) {
285 0         0 $prd -= ($car = int($prd * 1e-5)) * 1e5;
286             }
287             else {
288 2583         3838 $prd -= ($car = int($prd / 1e5)) * 1e5;
289             }
290 2583 100       6318 $x[$x] += 1e5 if ($bar = (($x[$x] -= $prd + $bar) < 0));
291             }
292 570 100       1354 if ($x[$#x] < $car + $bar) {
293 5         8 $car = 0; --$q;
  5         8  
294 5         16 for ($y = 0, $x = $#x-$#y-1; $y <= $#y; ++$y,++$x) {
295 44 100       103 $x[$x] -= 1e5
296             if ($car = (($x[$x] += $y[$y] + $car) > 1e5));
297             }
298             }
299             }
300 897         1431 pop(@x); unshift(@q, $q);
  897         2580  
301             }
302 165 100       376 if (wantarray) {
303 138         286 @d = ();
304 138 100       275 if ($dd != 1) {
305 136         207 $car = 0;
306 136         281 for $x (reverse @x) {
307 262         413 $prd = $car * 1e5 + $x;
308 262         479 $car = $prd - ($tmp = int($prd / $dd)) * $dd;
309 262         513 unshift(@d, $tmp);
310             }
311             }
312             else {
313 2         9 @d = @x;
314             }
315 138         365 (&external($sr, @q), &external($srem, @d, $zero));
316             } else {
317 27         74 &external($sr, @q);
318             }
319             }
320             1;