Skip to content

Commit 9da624d

Browse files
committed
correct bounds check
1 parent 3d203d6 commit 9da624d

4 files changed

+8
-8
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ public String getName() {
6464

6565
@Override
6666
public BigInteger findSingleFactor(BigInteger N) {
67-
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
68-
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
67+
if (N.bitLength() > 62) { // this check should be negligible in terms of performance
68+
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 62 bit");
6969
}
7070
long factorLong = findSingleFactor(N.longValue());
7171
return BigInteger.valueOf(factorLong);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ public String getName() {
6868

6969
@Override
7070
public BigInteger findSingleFactor(BigInteger N) {
71-
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
72-
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
71+
if (N.bitLength() > 62) { // this check should be negligible in terms of performance
72+
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 62 bit");
7373
}
7474
long factorLong = findSingleFactor(N.longValue());
7575
return BigInteger.valueOf(factorLong);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ public String getName() {
6868

6969
@Override
7070
public BigInteger findSingleFactor(BigInteger N) {
71-
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
72-
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
71+
if (N.bitLength() > 62) { // this check should be negligible in terms of performance
72+
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 62 bit");
7373
}
7474
long factorLong = findSingleFactor(N.longValue());
7575
return BigInteger.valueOf(factorLong);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ public String getName() {
6363

6464
@Override
6565
public BigInteger findSingleFactor(BigInteger N) {
66-
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
67-
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
66+
if (N.bitLength() > 62) { // this check should be negligible in terms of performance
67+
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 62 bit");
6868
}
6969
long factorLong = findSingleFactor(N.longValue());
7070
return BigInteger.valueOf(factorLong);

0 commit comments

Comments
 (0)