File tree 2 files changed +2
-2
lines changed
src/main/java/de/tilman_neumann/jml/factor/pollardRho
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public String getName() {
45
45
@ Override
46
46
public BigInteger findSingleFactor (BigInteger N ) {
47
47
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" );
49
49
}
50
50
int factorInt = findSingleFactor (N .intValue ());
51
51
return BigInteger .valueOf (factorInt );
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public String getName() {
46
46
@ Override
47
47
public BigInteger findSingleFactor (BigInteger N ) {
48
48
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" );
50
50
}
51
51
int factorInt = findSingleFactor (N .intValue ());
52
52
return BigInteger .valueOf (factorInt );
You can’t perform that action at this time.
0 commit comments