Files
ark-r1cs-std/r1cs-std/src/instantiated/ed_on_mnt4_753/fields.rs
Pratyush Mishra 370fbcdd3b Document r1cs-std
2020-09-16 22:06:50 -07:00

11 lines
260 B
Rust

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