use crate::{constraints::FqVar, *}; use ark_r1cs_std::groups::curves::short_weierstrass::ProjectiveVar; /// A group element in the secp384r1 curve. pub type GVar = ProjectiveVar; #[test] fn test() { ark_curve_constraint_tests::curves::sw_test::().unwrap(); }