Skip to content

Commit

Permalink
decrease iterations for mnt6_753
Browse files Browse the repository at this point in the history
  • Loading branch information
mmagician committed Jan 27, 2024
1 parent 27cace7 commit d6b58bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions curves/mnt6_753/src/curves/tests.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::*;
use ark_algebra_test_templates::*;

test_group!(g1; G1Projective; sw);
test_group!(g2; G2Projective; sw);
test_group!(pairing_output; ark_ec::pairing::PairingOutput<MNT6_753>; msm);
test_group!(g1; G1Projective; 100; sw);
test_group!(g2; G2Projective; 100; sw);
test_group!(pairing_output; ark_ec::pairing::PairingOutput<MNT6_753>; 100; msm);
test_pairing!(pairing; crate::MNT6_753);
8 changes: 4 additions & 4 deletions curves/mnt6_753/src/fields/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ use ark_algebra_test_templates::*;
use ark_ff::fields::{models::fp6_2over3::*, quadratic_extension::QuadExtConfig};
use ark_std::{rand::Rng, test_rng};

test_field!(fr; Fr; mont_prime_field);
test_field!(fq; Fq; mont_prime_field);
test_field!(fq3; Fq3);
test_field!(fq6; Fq6);
test_field!(fr; Fr; 200; mont_prime_field);
test_field!(fq; Fq; 200; mont_prime_field);
test_field!(fq3; 200; Fq3);
test_field!(fq6; 200; Fq6);

#[test]
fn test_fq3_more() {
Expand Down

0 comments on commit d6b58bf

Please sign in to comment.