Skip to content

Commit 409f8f1

Browse files
committed
and another improvement by Dave McGuigan: faster "mulMod"
1 parent 598e123 commit 409f8f1

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

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

+9-4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
* 1. Use squareAddModN31() instead of nested addModN(squareModN())
3232
* 2. reinitialize q before each inner loop
3333
* 3. Compute the number of steps before each gcd by m=log(n)
34+
* 4. Use faster "mulMod"
3435
*
3536
* @author Tilman Neumann
3637
*/
@@ -87,8 +88,13 @@ public int findSingleFactor(int nOriginal) {
8788
final int iMax = Math.min(m, r-k);
8889
for (int i=1; i<=iMax; i++) {
8990
y = squareAddModN31(y, c);
90-
final long diff = x<y ? y-x : x-y;
91-
q = (int) ((diff*q) % n);
91+
// the "mulMod" operation...
92+
// DM: "Apparently getting things into a 64 bit register at the start has benefits"
93+
//q = (int) ((((long)x-y) * q) % n);
94+
// But we still want to compute x-y in ints?
95+
//q = (int) (((x-y) * (long)q) % n);
96+
//q = (int) (((long)(x-y) * q) % n);
97+
q = (int) (((long)q * (x-y)) % n);
9298
}
9399
G = gcd.gcd(q, n);
94100
// if q==0 then G==N -> the loop will be left and restarted with new x0, c
@@ -102,8 +108,7 @@ public int findSingleFactor(int nOriginal) {
102108
if (G==n) {
103109
do {
104110
ys = squareAddModN31(ys, c);
105-
int diff = x<ys ? ys-x : x-ys;
106-
G = gcd.gcd(diff, n);
111+
G = gcd.gcd(x-ys, n);
107112
} while (G==1);
108113
if (DEBUG) LOG.debug("G = " + G);
109114
}

0 commit comments

Comments
 (0)