diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-04-19 15:10:07 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-04-19 15:10:07 +0800 |
commit | d5de0e304ac6b3d642e417a5b0ffa12b149ee9a8 (patch) | |
tree | 4aa67a3515882a3995b66c9f696ee238a9f163ec /test/glv_test.cpp | |
parent | 1a8bfdd7c07f2eb736311a5612b462dbe13f51c3 (diff) | |
download | tangerine-mcl-d5de0e304ac6b3d642e417a5b0ffa12b149ee9a8.tar.gz tangerine-mcl-d5de0e304ac6b3d642e417a5b0ffa12b149ee9a8.tar.zst tangerine-mcl-d5de0e304ac6b3d642e417a5b0ffa12b149ee9a8.zip |
refactor G2::Frobenius
Diffstat (limited to 'test/glv_test.cpp')
-rw-r--r-- | test/glv_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/glv_test.cpp b/test/glv_test.cpp index c321fa5..dff5c0e 100644 --- a/test/glv_test.cpp +++ b/test/glv_test.cpp @@ -119,7 +119,7 @@ void testGLV1() oldGLV oldGlv; oldGlv.init(BN::param.r, BN::param.z); - mcl::util::GLV1<Fp> glv; + mcl::bn::local::GLV1 glv; glv.init(BN::param.r, BN::param.z); compareLength(glv, oldGlv); @@ -160,7 +160,7 @@ void testGLV2() mpz_class z = BN::param.z; mpz_class r = BN::param.r; mpz_class lambda = 6 * z * z; - mcl::util::GLV2<Fp2> glv2; + mcl::bn::local::GLV2 glv2; glv2.init(r, z); mpz_class n; cybozu::XorShift rg; |