We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7a25b8 commit 8922b91Copy full SHA for 8922b91
1 file changed
src/test/java/de/tilman_neumann/jml/modular/ModularPowerPerformanceTest.java
@@ -84,7 +84,7 @@ private static void testPerformance() {
84
aBig_arr[i].modPow(bBig_arr[i], cIntBig_arr[i]);
85
}
86
t1 = System.currentTimeMillis();
87
- LOG.info("BigInteger.modPow(long modulus) took " + (t1-t0) + " ms");
+ LOG.info("BigInteger.modPow(int modulus) took " + (t1-t0) + " ms");
88
89
// test my implementation with int modulus
90
t0 = System.currentTimeMillis();
0 commit comments