Files
ark-curves-cherry-picked/ed_on_mnt4_753/src/constraints/fields.rs
2020-10-19 12:45:23 -07:00

11 lines
245 B
Rust

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