diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2016-04-19 15:00:41 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2016-04-19 15:00:41 +0800 |
commit | 9f9323301861cabcdbac433fb9ad44b5e1b01719 (patch) | |
tree | 45f4d0a20c0cffbc7ba440f36c596d71b3a859ad /sample | |
parent | 41b9e5901798d3a7df66315b3a409b7ef38af701 (diff) | |
download | tangerine-mcl-9f9323301861cabcdbac433fb9ad44b5e1b01719.tar.gz tangerine-mcl-9f9323301861cabcdbac433fb9ad44b5e1b01719.tar.zst tangerine-mcl-9f9323301861cabcdbac433fb9ad44b5e1b01719.zip |
rename Gmp to gmp
Diffstat (limited to 'sample')
-rw-r--r-- | sample/bench.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sample/bench.cpp b/sample/bench.cpp index 636256e..cd85c52 100644 --- a/sample/bench.cpp +++ b/sample/bench.cpp @@ -153,7 +153,7 @@ void benchToStr16() Fp x(tbl[i]); CYBOZU_BENCH("fp::toStr16", mcl::fp::toStr16, str, x.getUnit(), x.getUnitSize(), 16); mpz_class y(tbl[i]); - CYBOZU_BENCH("Gmp:getStr ", mcl::Gmp::getStr, str, y, 16); + CYBOZU_BENCH("gmp:getStr ", mcl::gmp::getStr, str, y, 16); } } @@ -178,7 +178,7 @@ void benchFromStr16() CYBOZU_BENCH("fp:fromStr16", mcl::fp::fromStr16, buf, N, str.c_str(), str.size()); mpz_class y; - CYBOZU_BENCH("Gmp:setStr ", mcl::Gmp::setStr, y, str, 16); + CYBOZU_BENCH("gmp:setStr ", mcl::gmp::setStr, y, str, 16); } } |