Skip to content

Commit 598e123

Browse files
committed
next improvements by Dave McGuigan
1 parent b7e88e4 commit 598e123

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

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

+12-4
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@
2727
*
2828
* 31 bit version.
2929
*
30-
* Improvement by Dave McGuigan:
31-
* Use squareAddModN31() instead of nested addModN(squareModN())
30+
* Improvements by Dave McGuigan:
31+
* 1. Use squareAddModN31() instead of nested addModN(squareModN())
32+
* 2. reinitialize q before each inner loop
33+
* 3. Compute the number of steps before each gcd by m=log(n)
3234
*
3335
* @author Tilman Neumann
3436
*/
@@ -66,15 +68,20 @@ public int findSingleFactor(int nOriginal) {
6668
int y = x0;
6769

6870
// Brent: "The probability of the algorithm failing because q_i=0 increases, so it is best not to choose m too large"
69-
final int m = 100;
71+
// DM: failing is a bit strong. q(i)=0 happens often when there are small powers of small factor (i.e.5*5)
72+
// This occurs because multiple instances of the factor are found with larger blocks. The loop below
73+
// addresses that by re-doing the last block and checking each individual difference. The "failure" is
74+
// is that larger blocks have more to re-do. Empirical testing indicates 2*log(N) is better than a fixed choice
75+
// for large N. In 31 bit versions, it was determined just log(N) is best.
76+
final int m = Math.max(8, 32 - Integer.numberOfLeadingZeros(n)); // Don't want it too small
7077
int r = 1;
71-
int q = 1;
7278
do {
7379
x = y;
7480
for (int i=1; i<=r; i++) {
7581
y = squareAddModN31(y, c);
7682
}
7783
int k = 0;
84+
int q = 1;
7885
do {
7986
ys = y;
8087
final int iMax = Math.min(m, r-k);
@@ -85,6 +92,7 @@ public int findSingleFactor(int nOriginal) {
8592
}
8693
G = gcd.gcd(q, n);
8794
// if q==0 then G==N -> the loop will be left and restarted with new x0, c
95+
// after checking each diff separately in the loop below.
8896
k += m;
8997
if (DEBUG) LOG.debug("r = " + r + ", k = " + k);
9098
} while (k<r && G==1);

0 commit comments

Comments
 (0)