You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
246 B

  1. use ark_r1cs_std::fields::fp::FpVar;
  2. use crate::fq::Fq;
  3. /// A variable that is the R1CS equivalent of `crate::Fq`.
  4. pub type FqVar = FpVar<Fq>;
  5. #[test]
  6. fn test() {
  7. ark_curve_constraint_tests::fields::field_test::<_, _, FqVar>().unwrap();
  8. }