diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-11-01 14:00:53 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-11-01 14:00:53 +0800 |
commit | e01c02ccc4b90db5157b676b88b7ebe1a41b8f3c (patch) | |
tree | 1cee9b6562c622787349087a6cc83b039f7f3925 | |
parent | d80d82fdb4b89b581f21b00d56b0afc60533a903 (diff) | |
download | dexon-mcl-e01c02ccc4b90db5157b676b88b7ebe1a41b8f3c.tar.gz dexon-mcl-e01c02ccc4b90db5157b676b88b7ebe1a41b8f3c.tar.zst dexon-mcl-e01c02ccc4b90db5157b676b88b7ebe1a41b8f3c.zip |
increase loop counter
-rw-r--r-- | test/bench.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bench.hpp b/test/bench.hpp index 84dd7ea..5cc232f 100644 --- a/test/bench.hpp +++ b/test/bench.hpp @@ -7,7 +7,7 @@ void testBench(const G1& P, const G2& Q) Fp12 e1, e2; pairing(e1, P, Q); Fp12::pow(e2, e1, 12345); - const int C = 500; + const int C = 1000; const int C3 = 3000; Fp x, y; x.setHashOf("abc"); |