Skip to content

Commit 8922b91

Browse files
committed
fix log
1 parent d7a25b8 commit 8922b91

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/de/tilman_neumann/jml/modular/ModularPowerPerformanceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private static void testPerformance() {
8484
aBig_arr[i].modPow(bBig_arr[i], cIntBig_arr[i]);
8585
}
8686
t1 = System.currentTimeMillis();
87-
LOG.info("BigInteger.modPow(long modulus) took " + (t1-t0) + " ms");
87+
LOG.info("BigInteger.modPow(int modulus) took " + (t1-t0) + " ms");
8888

8989
// test my implementation with int modulus
9090
t0 = System.currentTimeMillis();

0 commit comments

Comments
 (0)