Skip to content

Commit 263d212

Browse files
committed
tiny cleanup
1 parent 0f3bcaf commit 263d212

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,13 @@ public BigInteger findSingleFactor(BigInteger N) {
4949
// get random x0 from [0, N-1]
5050
BigInteger x = new BigInteger(bitLength, RNG);
5151
if (x.compareTo(N)>=0) x=x.subtract(N);
52-
BigInteger xx;
5352

5453
do {
5554
// get random c from [0, N-1]
5655
BigInteger c = new BigInteger(bitLength, RNG);
5756
if (c.compareTo(N)>=0) c=c.subtract(N);
5857

59-
xx = x;
58+
BigInteger xx = x;
6059
BigInteger xs;
6160
BigInteger xxs;
6261
BigInteger prod = I_1;

0 commit comments

Comments
 (0)