You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/main/java/de/tilman_neumann/jml/factor/pollardRho/PollardRhoBrentMontgomery64MHInlined.java
+5-7
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ public String getName() {
68
68
69
69
@Override
70
70
publicBigIntegerfindSingleFactor(BigIntegerN) {
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 63bit numbers!
72
72
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
73
73
thrownewIllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
74
74
}
@@ -108,8 +108,7 @@ public long findSingleFactor(long nOriginal) {
108
108
finalintiMax = Math.min(m, r-k);
109
109
for (inti=iMax; i>0; i--) {
110
110
y = montMul64(y, y+1, n, minusNInvModR);
111
-
finallongdiff = 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);
113
112
}
114
113
G = gcd.gcd(q, n);
115
114
// 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) {
0 commit comments