identity -> zero for Affine

This commit is contained in:
Pratyush Mishra
2022-09-09 16:28:49 -07:00
parent f2e53be88e
commit 4fbdc2b6a5
2 changed files with 2 additions and 2 deletions

View File

@@ -209,7 +209,7 @@ where
let (x, y, z) = match f() {
Ok(ge) => {
let ge = ge.into_affine();
if ge.is_identity() {
if ge.is_zero() {
(
Ok(P::BaseField::zero()),
Ok(P::BaseField::one()),

View File

@@ -75,7 +75,7 @@ where
.double()
.into_affine();
// Panic if the result is zero.
assert!(!result.is_identity());
assert!(!result.is_zero());
Ok(Self::new(F::constant(result.x), F::constant(result.y)))
} else {
let (x1, y1) = (&self.x, &self.y);