Skip to content

Commit f54d8b3

Browse files
committed
make argument check log more generic
1 parent 6ba39a4 commit f54d8b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public String getName() {
4545
@Override
4646
public BigInteger findSingleFactor(BigInteger N) {
4747
if (N.bitLength() > 31) { // this check should be negligible in terms of performance
48-
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but PollardRho31 only supports arguments <= 31 bit");
48+
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 31 bit");
4949
}
5050
int factorInt = findSingleFactor(N.intValue());
5151
return BigInteger.valueOf(factorInt);

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public String getName() {
4646
@Override
4747
public BigInteger findSingleFactor(BigInteger N) {
4848
if (N.bitLength() > 31) { // this check should be negligible in terms of performance
49-
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but PollardRho31 only supports arguments <= 31 bit");
49+
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but " + getName() + " only supports arguments <= 31 bit");
5050
}
5151
int factorInt = findSingleFactor(N.intValue());
5252
return BigInteger.valueOf(factorInt);

0 commit comments

Comments
 (0)