Skip to content

Commit

Permalink
decrease iters further
Browse files Browse the repository at this point in the history
  • Loading branch information
mmagician committed Jan 27, 2024
1 parent 54db402 commit d282834
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions curves/mnt4_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!(100; g1; G1Projective; sw);
test_group!(100; g2; G2Projective; sw);
test_group!(100; pairing_output; ark_ec::pairing::PairingOutput<MNT4_753>; msm);
test_group!(50; g1; G1Projective; sw);
test_group!(50; g2; G2Projective; sw);
test_group!(50; pairing_output; ark_ec::pairing::PairingOutput<MNT4_753>; msm);
test_pairing!(pairing; crate::MNT4_753);
8 changes: 4 additions & 4 deletions curves/mnt4_753/src/fields/tests.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::*;
use ark_algebra_test_templates::*;

test_field!(200; fr; Fr; mont_prime_field);
test_field!(200; fq; Fq; mont_prime_field);
test_field!(200; fq2; Fq2);
test_field!(200; fq4; Fq4);
test_field!(100; fr; Fr; mont_prime_field);
test_field!(100; fq; Fq; mont_prime_field);
test_field!(100; fq2; Fq2);
test_field!(100; fq4; Fq4);
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!(100; g1; G1Projective; sw);
test_group!(100; g2; G2Projective; sw);
test_group!(100; pairing_output; ark_ec::pairing::PairingOutput<MNT6_753>; msm);
test_group!(50; g1; G1Projective; sw);
test_group!(50; g2; G2Projective; sw);
test_group!(50; pairing_output; ark_ec::pairing::PairingOutput<MNT6_753>; 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!(200; fr; Fr; mont_prime_field);
test_field!(200; fq; Fq; mont_prime_field);
test_field!(200; fq3; Fq3);
test_field!(200; fq6; Fq6);
test_field!(100; fr; Fr; mont_prime_field);
test_field!(100; fq; Fq; mont_prime_field);
test_field!(100; fq3; Fq3);
test_field!(100; fq6; Fq6);

#[test]
fn test_fq3_more() {
Expand Down

0 comments on commit d282834

Please sign in to comment.