Skip to content

Commit 7f7c0a8

Browse files
committed
works with 63 bit numbers now and good speedup
1 parent cb2ec30 commit 7f7c0a8

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

src/main/java/de/tilman_neumann/jml/factor/pollardRho/PollardRhoBrentMontgomery64MHInlined.java

+5-7
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public String getName() {
6868

6969
@Override
7070
public BigInteger findSingleFactor(BigInteger N) {
71-
// there is a complication with this check: The algorithm works for some 63-bit numbers and there are tests for it, but there may be 63-bit numbers where it fails
71+
// this version works for all 63 bit numbers!
7272
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
7373
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
7474
}
@@ -108,8 +108,7 @@ public long findSingleFactor(long nOriginal) {
108108
final int iMax = Math.min(m, r-k);
109109
for (int i=iMax; i>0; i--) {
110110
y = montMul64(y, y+1, n, minusNInvModR);
111-
final long diff = x<y ? y-x : x-y; // XXX would be nice if we could get rid of this like in PollardRhoBrentMontgomery32
112-
q = montMul64(diff, q, n, minusNInvModR);
111+
q = montMul64(y-x, q, n, minusNInvModR);
113112
}
114113
G = gcd.gcd(q, n);
115114
// if q==0 then G==n -> the loop will be left and restarted with new y
@@ -122,8 +121,7 @@ public long findSingleFactor(long nOriginal) {
122121
if (G==n) {
123122
do {
124123
ys = montMul64(ys, ys+1, n, minusNInvModR);
125-
final long diff = x<ys ? ys-x : x-ys;
126-
G = gcd.gcd(diff, n);
124+
G = gcd.gcd(ys-x, n);
127125
} while (G==1);
128126
if (DEBUG) LOG.debug("G = " + G);
129127
}
@@ -171,7 +169,7 @@ private void setUpMontgomeryMult() {
171169
public static long montMul64(long a, long b, long N, long Nhat) {
172170
// Step 1: Compute a*b
173171
long abHigh = Math.multiplyHigh(a, b);
174-
if (a<0) abHigh += b;
172+
//if (a<0) abHigh += b; // BAD, KILLS THE ALGORITHM FOR NEGATIVE a
175173

176174
// Step 2: Compute t = ab * (-1/N) mod R
177175
// Since R=2^64, "x mod R" just means to get the low part of x.
@@ -181,7 +179,7 @@ public static long montMul64(long a, long b, long N, long Nhat) {
181179
long t = abLow * Nhat;
182180
final long tNLow = t*N;
183181
long tNHigh = Math.multiplyHigh(t, N);
184-
if (t<0) tNHigh += N;
182+
//if (t<0) tNHigh += N; // bad for performance
185183
Uint128 tN = new Uint128(tNHigh, tNLow); // for some reason, removing this object seems to degrade performance
186184

187185
// Step 3: Compute r = (a*b + t*N) / R

0 commit comments

Comments
 (0)