1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
|
#!/usr/bin/perl -w
use strict;
use Test;
BEGIN
{
$| = 1;
chdir 't' if -d 't';
unshift @INC, '../lib'; # for running manually
}
use Math::BigInt::Calc;
BEGIN
{
plan tests => 276;
}
# testing of Math::BigInt::Calc
my $C = 'Math::BigInt::Calc'; # pass classname to sub's
# _new and _str
my $x = $C->_new(\"123"); my $y = $C->_new(\"321");
ok (ref($x),'ARRAY'); ok (${$C->_str($x)},123); ok (${$C->_str($y)},321);
###############################################################################
# _add, _sub, _mul, _div
ok (${$C->_str($C->_add($x,$y))},444);
ok (${$C->_str($C->_sub($x,$y))},123);
ok (${$C->_str($C->_mul($x,$y))},39483);
ok (${$C->_str($C->_div($x,$y))},123);
###############################################################################
# check that mul/div doesn't change $y
# and returns the same reference, not something new
ok (${$C->_str($C->_mul($x,$y))},39483);
ok (${$C->_str($x)},39483); ok (${$C->_str($y)},321);
ok (${$C->_str($C->_div($x,$y))},123);
ok (${$C->_str($x)},123); ok (${$C->_str($y)},321);
$x = $C->_new(\"39483");
my ($x1,$r1) = $C->_div($x,$y);
ok ("$x1","$x");
$C->_inc($x1);
ok ("$x1","$x");
ok (${$C->_str($r1)},'0');
$x = $C->_new(\"39483"); # reset
###############################################################################
my $z = $C->_new(\"2");
ok (${$C->_str($C->_add($x,$z))},39485);
my ($re,$rr) = $C->_div($x,$y);
ok (${$C->_str($re)},123); ok (${$C->_str($rr)},2);
# is_zero, _is_one, _one, _zero
ok ($C->_is_zero($x)||0,0);
ok ($C->_is_one($x)||0,0);
ok (${$C->_str($C->_zero())},"0");
ok (${$C->_str($C->_one())},"1");
# _two() (only used internally)
ok (${$C->_str($C->_two())},"2");
ok ($C->_is_one($C->_one()),1);
ok ($C->_is_one($C->_zero()) || 0,0);
ok ($C->_is_zero($C->_zero()),1);
ok ($C->_is_zero($C->_one()) || 0,0);
# is_odd, is_even
ok ($C->_is_odd($C->_one()),1); ok ($C->_is_odd($C->_zero())||0,0);
ok ($C->_is_even($C->_one()) || 0,0); ok ($C->_is_even($C->_zero()),1);
# _len
$x = $C->_new(\"1"); ok ($C->_len($x),1);
$x = $C->_new(\"12"); ok ($C->_len($x),2);
$x = $C->_new(\"123"); ok ($C->_len($x),3);
$x = $C->_new(\"1234"); ok ($C->_len($x),4);
$x = $C->_new(\"12345"); ok ($C->_len($x),5);
$x = $C->_new(\"123456"); ok ($C->_len($x),6);
$x = $C->_new(\"1234567"); ok ($C->_len($x),7);
$x = $C->_new(\"12345678"); ok ($C->_len($x),8);
$x = $C->_new(\"123456789"); ok ($C->_len($x),9);
$x = $C->_new(\"8"); ok ($C->_len($x),1);
$x = $C->_new(\"21"); ok ($C->_len($x),2);
$x = $C->_new(\"321"); ok ($C->_len($x),3);
$x = $C->_new(\"4321"); ok ($C->_len($x),4);
$x = $C->_new(\"54321"); ok ($C->_len($x),5);
$x = $C->_new(\"654321"); ok ($C->_len($x),6);
$x = $C->_new(\"7654321"); ok ($C->_len($x),7);
$x = $C->_new(\"87654321"); ok ($C->_len($x),8);
$x = $C->_new(\"987654321"); ok ($C->_len($x),9);
for (my $i = 1; $i < 9; $i++)
{
my $a = "$i" . '0' x ($i-1);
$x = $C->_new(\$a);
print "# Tried len '$a'\n" unless ok ($C->_len($x),$i);
}
# _digit
$x = $C->_new(\"123456789");
ok ($C->_digit($x,0),9);
ok ($C->_digit($x,1),8);
ok ($C->_digit($x,2),7);
ok ($C->_digit($x,-1),1);
ok ($C->_digit($x,-2),2);
ok ($C->_digit($x,-3),3);
# _copy
foreach (qw/ 1 12 123 1234 12345 123456 1234567 12345678 123456789/)
{
$x = $C->_new(\"$_");
ok (${$C->_str($C->_copy($x))},"$_");
ok (${$C->_str($x)},"$_"); # did _copy destroy original x?
}
# _zeros
$x = $C->_new(\"1256000000"); ok ($C->_zeros($x),6);
$x = $C->_new(\"152"); ok ($C->_zeros($x),0);
$x = $C->_new(\"123000"); ok ($C->_zeros($x),3);
# _lsft, _rsft
$x = $C->_new(\"10"); $y = $C->_new(\"3");
ok (${$C->_str($C->_lsft($x,$y,10))},10000);
$x = $C->_new(\"20"); $y = $C->_new(\"3");
ok (${$C->_str($C->_lsft($x,$y,10))},20000);
$x = $C->_new(\"128"); $y = $C->_new(\"4");
ok (${$C->_str($C->_lsft($x,$y,2))}, 128 << 4);
$x = $C->_new(\"1000"); $y = $C->_new(\"3");
ok (${$C->_str($C->_rsft($x,$y,10))},1);
$x = $C->_new(\"20000"); $y = $C->_new(\"3");
ok (${$C->_str($C->_rsft($x,$y,10))},20);
$x = $C->_new(\"256"); $y = $C->_new(\"4");
ok (${$C->_str($C->_rsft($x,$y,2))},256 >> 4);
$x = $C->_new(\"6411906467305339182857313397200584952398");
$y = $C->_new(\"45");
ok (${$C->_str($C->_rsft($x,$y,10))},0);
# _acmp
$x = $C->_new(\"123456789");
$y = $C->_new(\"987654321");
ok ($C->_acmp($x,$y),-1);
ok ($C->_acmp($y,$x),1);
ok ($C->_acmp($x,$x),0);
ok ($C->_acmp($y,$y),0);
$x = $C->_new(\"1234567890123456789");
$y = $C->_new(\"987654321012345678");
ok ($C->_acmp($x,$y),1);
ok ($C->_acmp($y,$x),-1);
ok ($C->_acmp($x,$x),0);
ok ($C->_acmp($y,$y),0);
$x = $C->_new(\"1234");
$y = $C->_new(\"987654321012345678");
ok ($C->_acmp($x,$y),-1);
ok ($C->_acmp($y,$x),1);
ok ($C->_acmp($x,$x),0);
ok ($C->_acmp($y,$y),0);
# _modinv
$x = $C->_new(\"8");
$y = $C->_new(\"5033");
my ($xmod,$sign) = $C->_modinv($x,$y);
ok (${$C->_str($xmod)},'629'); # -629 % 5033 == 4404
ok ($sign, '-');
# _div
$x = $C->_new(\"3333"); $y = $C->_new(\"1111");
ok (${$C->_str(scalar $C->_div($x,$y))},3);
$x = $C->_new(\"33333"); $y = $C->_new(\"1111"); ($x,$y) = $C->_div($x,$y);
ok (${$C->_str($x)},30); ok (${$C->_str($y)},3);
$x = $C->_new(\"123"); $y = $C->_new(\"1111");
($x,$y) = $C->_div($x,$y); ok (${$C->_str($x)},0); ok (${$C->_str($y)},123);
# _num
foreach (qw/1 12 123 1234 12345 1234567 12345678 123456789 1234567890/)
{
$x = $C->_new(\"$_");
ok (ref($x)||'','ARRAY'); ok (${$C->_str($x)},"$_");
$x = $C->_num($x); ok (ref($x)||'',''); ok ($x,$_);
}
# _sqrt
$x = $C->_new(\"144"); ok (${$C->_str($C->_sqrt($x))},'12');
# _fac
$x = $C->_new(\"0"); ok (${$C->_str($C->_fac($x))},'1');
$x = $C->_new(\"1"); ok (${$C->_str($C->_fac($x))},'1');
$x = $C->_new(\"2"); ok (${$C->_str($C->_fac($x))},'2');
$x = $C->_new(\"3"); ok (${$C->_str($C->_fac($x))},'6');
$x = $C->_new(\"4"); ok (${$C->_str($C->_fac($x))},'24');
$x = $C->_new(\"5"); ok (${$C->_str($C->_fac($x))},'120');
$x = $C->_new(\"10"); ok (${$C->_str($C->_fac($x))},'3628800');
$x = $C->_new(\"11"); ok (${$C->_str($C->_fac($x))},'39916800');
$x = $C->_new(\"12"); ok (${$C->_str($C->_fac($x))},'479001600');
##############################################################################
# _inc and _dec
foreach (qw/1 11 121 1231 12341 1234561 12345671 123456781 1234567891/)
{
$x = $C->_new(\"$_"); $C->_inc($x);
print "# \$x = ",${$C->_str($x)},"\n"
unless ok (${$C->_str($x)},substr($_,0,length($_)-1) . '2');
$C->_dec($x); ok (${$C->_str($x)},$_);
}
foreach (qw/19 119 1219 12319 1234519 12345619 123456719 1234567819/)
{
$x = $C->_new(\"$_"); $C->_inc($x);
print "# \$x = ",${$C->_str($x)},"\n"
unless ok (${$C->_str($x)},substr($_,0,length($_)-2) . '20');
$C->_dec($x); ok (${$C->_str($x)},$_);
}
foreach (qw/999 9999 99999 9999999 99999999 999999999 9999999999 99999999999/)
{
$x = $C->_new(\"$_"); $C->_inc($x);
print "# \$x = ",${$C->_str($x)},"\n"
unless ok (${$C->_str($x)}, '1' . '0' x (length($_)));
$C->_dec($x); ok (${$C->_str($x)},$_);
}
$x = $C->_new(\"1000"); $C->_inc($x); ok (${$C->_str($x)},'1001');
$C->_dec($x); ok (${$C->_str($x)},'1000');
my $BL;
{
no strict 'refs';
$BL = &{"$C"."::_base_len"}();
}
$x = '1' . '0' x $BL;
$z = '1' . '0' x ($BL-1); $z .= '1';
$x = $C->_new(\$x); $C->_inc($x); ok (${$C->_str($x)},$z);
$x = '1' . '0' x $BL; $z = '9' x $BL;
$x = $C->_new(\$x); $C->_dec($x); ok (${$C->_str($x)},$z);
# should not happen:
# $x = $C->_new(\"-2"); $y = $C->_new(\"4"); ok ($C->_acmp($x,$y),-1);
###############################################################################
# _mod
$x = $C->_new(\"1000"); $y = $C->_new(\"3");
ok (${$C->_str(scalar $C->_mod($x,$y))},1);
$x = $C->_new(\"1000"); $y = $C->_new(\"2");
ok (${$C->_str(scalar $C->_mod($x,$y))},0);
# _and, _or, _xor
$x = $C->_new(\"5"); $y = $C->_new(\"2");
ok (${$C->_str(scalar $C->_xor($x,$y))},7);
$x = $C->_new(\"5"); $y = $C->_new(\"2");
ok (${$C->_str(scalar $C->_or($x,$y))},7);
$x = $C->_new(\"5"); $y = $C->_new(\"3");
ok (${$C->_str(scalar $C->_and($x,$y))},1);
# _from_hex, _from_bin
ok (${$C->_str(scalar $C->_from_hex(\"0xFf"))},255);
ok (${$C->_str(scalar $C->_from_bin(\"0b10101011"))},160+11);
# _as_hex, _as_bin
ok (${$C->_str(scalar $C->_from_hex( $C->_as_hex( $C->_new(\"128"))))}, 128);
ok (${$C->_str(scalar $C->_from_bin( $C->_as_bin( $C->_new(\"128"))))}, 128);
# _check
$x = $C->_new(\"123456789");
ok ($C->_check($x),0);
ok ($C->_check(123),'123 is not a reference');
###############################################################################
# __strip_zeros
{
no strict 'refs';
# correct empty arrays
$x = &{$C."::__strip_zeros"}([]); ok (@$x,1); ok ($x->[0],0);
# don't strip single elements
$x = &{$C."::__strip_zeros"}([0]); ok (@$x,1); ok ($x->[0],0);
$x = &{$C."::__strip_zeros"}([1]); ok (@$x,1); ok ($x->[0],1);
# don't strip non-zero elements
$x = &{$C."::__strip_zeros"}([0,1]);
ok (@$x,2); ok ($x->[0],0); ok ($x->[1],1);
$x = &{$C."::__strip_zeros"}([0,1,2]);
ok (@$x,3); ok ($x->[0],0); ok ($x->[1],1); ok ($x->[2],2);
# but strip leading zeros
$x = &{$C."::__strip_zeros"}([0,1,2,0]);
ok (@$x,3); ok ($x->[0],0); ok ($x->[1],1); ok ($x->[2],2);
$x = &{$C."::__strip_zeros"}([0,1,2,0,0]);
ok (@$x,3); ok ($x->[0],0); ok ($x->[1],1); ok ($x->[2],2);
$x = &{$C."::__strip_zeros"}([0,1,2,0,0,0]);
ok (@$x,3); ok ($x->[0],0); ok ($x->[1],1); ok ($x->[2],2);
# collapse multiple zeros
$x = &{$C."::__strip_zeros"}([0,0,0,0]);
ok (@$x,1); ok ($x->[0],0);
}
###############################################################################
# _to_large and _to_small (last since they toy with BASE_LEN etc)
$C->_base_len(5,7); $x = [ qw/67890 12345 67890 12345/ ]; $C->_to_large($x);
ok (@$x,3);
ok ($x->[0], '4567890'); ok ($x->[1], '7890123'); ok ($x->[2], '123456');
$C->_base_len(5,7); $x = [ qw/54321 54321 54321 54321/ ]; $C->_to_large($x);
ok (@$x,3);
ok ($x->[0], '2154321'); ok ($x->[1], '4321543'); ok ($x->[2], '543215');
$C->_base_len(6,7); $x = [ qw/654321 654321 654321 654321/ ];
$C->_to_large($x); ok (@$x,4);
ok ($x->[0], '1654321'); ok ($x->[1], '2165432');
ok ($x->[2], '3216543'); ok ($x->[3], '654');
$C->_base_len(5,7); $C->_to_small($x); ok (@$x,5);
ok ($x->[0], '54321'); ok ($x->[1], '43216');
ok ($x->[2], '32165'); ok ($x->[3], '21654');
ok ($x->[4], '6543');
$C->_base_len(7,10); $x = [ qw/0000000 0000000 9999990 9999999/ ];
$C->_to_large($x); ok (@$x,3);
ok ($x->[0], '0000000000'); ok ($x->[1], '9999900000');
ok ($x->[2], '99999999');
$C->_base_len(7,10); $x = [ qw/0000000 0000000 9999990 9999999 99/ ];
$C->_to_large($x); ok (@$x,3);
ok ($x->[0], '0000000000'); ok ($x->[1], '9999900000');
ok ($x->[2], '9999999999');
# done
1;
|