-
Notifications
You must be signed in to change notification settings - Fork 0
/
PSW_primality_test.pl
88 lines (67 loc) · 1.91 KB
/
PSW_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(foroddcomposites forprimes 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 PSW_primality_test ($n) {
if (ref($n) ne 'Math::GMPz') {
$n = Math::GMPz->new("$n");
}
return 0 if Math::GMPz::Rmpz_cmp_ui($n, 1) <= 0;
return 1 if Math::GMPz::Rmpz_cmp_ui($n, 2) == 0;
return 0 if Math::GMPz::Rmpz_even_p($n);
return 0 if Math::GMPz::Rmpz_perfect_power_p($n);
my $d = Math::GMPz::Rmpz_init();
my $t = Math::GMPz::Rmpz_init_set_ui(2);
# Fermat base-2 test
Math::GMPz::Rmpz_sub_ui($d, $n, 1);
Math::GMPz::Rmpz_powm($t, $t, $d, $n);
Math::GMPz::Rmpz_cmp_ui($t, 1) and return 0;
# In general, we find P such that kronecker(P^2 + 4, n) = -1.
my $P;
for (my $k = 1 ; ; ++$k) {
if (Math::GMPz::Rmpz_ui_kronecker($k * $k + 4, $n) == -1) {
$P = $k;
last;
}
}
# If LucasU(P, -1, n+1) = 0 (mod n), then n is probably prime.
(lucas_sequence($n, $P, -1, $n + 1))[0] == 0;
}
say "Sanity check...";
forprimes {
if (!PSW_primality_test($_)) {
die "Missed prime: $_";
}
}
1e6;
foroddcomposites {
if (PSW_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 (PSW_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";
}