From 7df73796d504fceeebdc695fd56d60b14ebd989c Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Wed, 28 Aug 2019 05:07:44 +0900 Subject: [PATCH] remove assert --- include/mcl/bn.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/mcl/bn.hpp b/include/mcl/bn.hpp index 15ebca8..0a5744b 100644 --- a/include/mcl/bn.hpp +++ b/include/mcl/bn.hpp @@ -1223,7 +1223,6 @@ inline void addLine(Fp6& l, G2& R, const G2& Q, const G1& P) } inline void mulFp6cb_by_G1xy(Fp6& y, const Fp6& x, const G1& P) { - assert(P.isNormalized()); y.a = x.a; Fp2::mulFp(y.c, x.c, P.x); Fp2::mulFp(y.b, x.b, P.y);