This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate perl
[perl5.git] / lib / Math / BigInt / t / mbi_rand.t
... / ...
CommitLineData
1#!/usr/bin/perl -w
2
3use Test;
4use strict;
5
6my $count;
7
8BEGIN
9 {
10 $| = 1;
11 if ($^O eq 'os390') { print "1..0\n"; exit(0) } # test takes too long there
12 unshift @INC, '../lib'; # for running manually
13 my $location = $0; $location =~ s/mbi_rand.t//;
14 unshift @INC, $location; # to locate the testing files
15 chdir 't' if -d 't';
16 $count = 128;
17 plan tests => $count*2;
18 }
19
20use Math::BigInt;
21my $c = 'Math::BigInt';
22
23my $length = 128;
24
25# If you get a failure here, please re-run the test with the printed seed
26# value as input: perl t/mbi_rand.t seed
27
28my $seed = ($#ARGV == 0) ? $ARGV[0] : int(rand(65537));
29print "# seed: $seed\n"; srand($seed);
30
31my ($A,$B,$As,$Bs,$ADB,$AMB,$la,$lb);
32my $two = Math::BigInt->new(2);
33for (my $i = 0; $i < $count; $i++)
34 {
35 # length of A and B
36 $la = int(rand($length)+1); $lb = int(rand($length)+1);
37 $As = ''; $Bs = '';
38 # we create the numbers from "patterns", e.g. get a random number and a
39 # random count and string them together. This means things like
40 # "100000999999999999911122222222" are much more likely. If we just strung
41 # together digits, we would end up with "1272398823211223" etc.
42 while (length($As) < $la) { $As .= int(rand(100)) x int(rand(16)); }
43 while (length($Bs) < $lb) { $Bs .= int(rand(100)) x int(rand(16)); }
44 $As =~ s/^0+//; $Bs =~ s/^0+//;
45 $As = $As || '0'; $Bs = $Bs || '0';
46 # print "# As $As\n# Bs $Bs\n";
47 $A = $c->new($As); $B = $c->new($Bs);
48 # print "# A $A\n# B $B\n";
49 if ($A->is_zero() || $B->is_zero())
50 {
51 ok (1,1); ok (1,1); next;
52 }
53 # check that int(A/B)*B + A % B == A holds for all inputs
54 # $X = ($A/$B)*$B + 2 * ($A % $B) - ($A % $B);
55 ($ADB,$AMB) = $A->copy()->bdiv($B);
56 print "# ". join(' ',Math::BigInt::Calc->_base_len()),"\n"
57 unless ok ($ADB*$B+$two*$AMB-$AMB,$As);
58 # swap 'em and try this, too
59 # $X = ($B/$A)*$A + $B % $A;
60 ($ADB,$AMB) = $B->copy()->bdiv($A);
61 print "# ". join(' ',Math::BigInt::Calc->_base_len()),"\n"
62 unless ok ($ADB*$A+$two*$AMB-$AMB,$Bs);
63 }
64