Skip to content

Commit 1fc2f96

Browse files
committed
comment
1 parent 03678bc commit 1fc2f96

4 files changed

+4
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public String getName() {
6464

6565
@Override
6666
public BigInteger findSingleFactor(BigInteger N) {
67+
// there is a complication with this check: The algorithm works for some 63-bit numbers and there are tests for it, but there may be 63-bit numbers where it fails
6768
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
6869
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
6970
}

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

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public String getName() {
6868

6969
@Override
7070
public BigInteger findSingleFactor(BigInteger N) {
71+
// there is a complication with this check: The algorithm works for some 63-bit numbers and there are tests for it, but there may be 63-bit numbers where it fails
7172
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
7273
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
7374
}

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

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public String getName() {
6868

6969
@Override
7070
public BigInteger findSingleFactor(BigInteger N) {
71+
// there is a complication with this check: The algorithm works for some 63-bit numbers and there are tests for it, but there may be 63-bit numbers where it fails
7172
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
7273
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
7374
}

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

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public String getName() {
6363

6464
@Override
6565
public BigInteger findSingleFactor(BigInteger N) {
66+
// there is a complication with this check: The algorithm works for some 63-bit numbers and there are tests for it, but there may be 63-bit numbers where it fails
6667
if (N.bitLength() > 63) { // this check should be negligible in terms of performance
6768
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 63 bit");
6869
}

0 commit comments

Comments
 (0)