Fix benchmarks and fix accidental renaming of Pallas/Vesta (#108)

This commit is contained in:
Pratyush Mishra
2022-08-01 13:46:52 -07:00
committed by GitHub
parent 67d5a8582e
commit e75546313a
5 changed files with 17 additions and 24 deletions

View File

@@ -1,7 +1,7 @@
use crate::{fq::Fq, fr::Fr};
use ark_ec::{
models::CurveConfig,
short_weierstrass::{Affine, Projective, SWCurveConfig},
short_weierstrass::{self as sw, SWCurveConfig},
};
use ark_ff::{Field, MontFp, Zero};
@@ -22,8 +22,8 @@ impl CurveConfig for VestaParameters {
const COFACTOR_INV: Fr = Fr::ONE;
}
pub type G1Affine = Affine<VestaParameters>;
pub type G1Projective = Projective<VestaParameters>;
pub type Affine = sw::Affine<VestaParameters>;
pub type Projective = sw::Projective<VestaParameters>;
impl SWCurveConfig for VestaParameters {
/// COEFF_A = 0
@@ -33,7 +33,7 @@ impl SWCurveConfig for VestaParameters {
const COEFF_B: Fq = MontFp!("5");
/// AFFINE_GENERATOR_COEFFS = (G1_GENERATOR_X, G1_GENERATOR_Y)
const GENERATOR: G1Affine = G1Affine::new_unchecked(G_GENERATOR_X, G_GENERATOR_Y);
const GENERATOR: Affine = Affine::new_unchecked(G_GENERATOR_X, G_GENERATOR_Y);
#[inline(always)]
fn mul_by_a(_: &Self::BaseField) -> Self::BaseField {

View File

@@ -1,17 +1,17 @@
use ark_algebra_test_templates::curves::{curve_tests, sw_tests};
use ark_ec::AffineCurve;
use crate::{G1Affine, G1Projective, VestaParameters};
use crate::{Affine, Projective, VestaParameters};
#[test]
fn test_projective_curve() {
curve_tests::<G1Projective>();
curve_tests::<Projective>();
sw_tests::<VestaParameters>();
}
#[test]
fn test_generator() {
let generator = G1Affine::prime_subgroup_generator();
let generator = Affine::prime_subgroup_generator();
assert!(generator.is_on_curve());
assert!(generator.is_in_correct_subgroup_assuming_on_curve());
}