diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-08-26 11:24:10 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-08-26 11:24:10 +0800 |
commit | 6aa0bc086920516ef67abff1e9f0304a12467170 (patch) | |
tree | d3c09756479d5d955975d3ed328199ab6c7a5ebe | |
parent | 271a2e4146a1bdb3c642fafe1c360f06a3b8a6ae (diff) | |
download | tangerine-mcl-6aa0bc086920516ef67abff1e9f0304a12467170.tar.gz tangerine-mcl-6aa0bc086920516ef67abff1e9f0304a12467170.tar.zst tangerine-mcl-6aa0bc086920516ef67abff1e9f0304a12467170.zip |
remove unnecessary assert
-rw-r--r-- | include/mcl/ec.hpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/mcl/ec.hpp b/include/mcl/ec.hpp index 92d4f67..ffad737 100644 --- a/include/mcl/ec.hpp +++ b/include/mcl/ec.hpp @@ -212,7 +212,6 @@ public: // verify the order bool isValidOrder() const { - assert(order_); EcT Q; EcT::mulGeneric(Q, *this, order_); return Q.isZero(); |