-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBPSW_primality_test.pl
88 lines (64 loc) · 1.68 KB
/
BPSW_primality_test.pl
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
#!/usr/bin/perl
use 5.020;
use strict;
use warnings;
use experimental qw(signatures);
use Math::GMPz;
use Math::AnyNum qw(fibmod lucasmod);
use ntheory qw(forprimes foroddcomposites is_prime powmod kronecker is_power valuation );
use Math::Prime::Util::GMP qw(lucas_sequence);
use 5.020;
use warnings;
use experimental qw(signatures);
sub BPSW_primality_test ($n) {
return 0 if ($n <= 1);
return 1 if ($n == 2);
return 0 if is_power($n);
powmod(2, $n - 1, $n) == 1 or return 0;
my ($P, $Q) = (1, 0);
for (my $k = 2 ; ; ++$k) {
my $D = (-1)**$k * (2 * $k + 1);
if (kronecker($D, $n) == -1) {
$Q = (1 - $D) / 4;
last;
}
}
my $d = $n + 1;
my $s = valuation($d, 2);
$d >>= $s;
my ($U) = lucas_sequence($n, $P, $Q, $d);
return 1 if $U eq '0';
foreach my $r (0 .. $s - 1) {
my (undef, $V) = lucas_sequence($n, $P, $Q, $d << ($s - $r - 1));
return 1 if $V eq '0';
}
return 0;
}
say "Sanity check...";
forprimes {
if (!BPSW_primality_test($_)) {
die "Missed prime: $_";
}
} 1e6;
foroddcomposites {
if (BPSW_primality_test($_)) {
die "Counter-example: $_";
}
} 1e6;
say "Done...";
say "Beginning the test...";
my %seen;
while (<>) {
next if /^\h*#/;
/\S/ or next;
my $n = (split(' ', $_))[-1];
$n || next;
$n = Math::GMPz->new("$n");
if (BPSW_primality_test($n)) {
say "Counter-example: $n";
}
#ntheory::is_prime($n) && die "error: $n\n";
#ntheory::is_prime($n) && die "error: $n\n";
#ntheory::is_aks_prime($n) && die "error: $n\n";
#ntheory::miller_rabin_random($n, 7) && die "error: $n\n";
}