File tree 1 file changed +9
-4
lines changed
src/main/java/de/tilman_neumann/jml/factor/pollardRho
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 31
31
* 1. Use squareAddModN31() instead of nested addModN(squareModN())
32
32
* 2. reinitialize q before each inner loop
33
33
* 3. Compute the number of steps before each gcd by m=log(n)
34
+ * 4. Use faster "mulMod"
34
35
*
35
36
* @author Tilman Neumann
36
37
*/
@@ -87,8 +88,13 @@ public int findSingleFactor(int nOriginal) {
87
88
final int iMax = Math .min (m , r -k );
88
89
for (int i =1 ; i <=iMax ; i ++) {
89
90
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 );
92
98
}
93
99
G = gcd .gcd (q , n );
94
100
// 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) {
102
108
if (G ==n ) {
103
109
do {
104
110
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 );
107
112
} while (G ==1 );
108
113
if (DEBUG ) LOG .debug ("G = " + G );
109
114
}
You can’t perform that action at this time.
0 commit comments