Files
ark-r1cs-std/r1cs-std/src/instantiated/edwards_sw6/fields.rs

10 lines
184 B
Rust

use crate::fields::fp::FpGadget;
use algebra::edwards_sw6::fq::Fq;
pub type FqGadget = FpGadget<Fq>;
#[test]
fn test() {
crate::fields::tests::field_test::<_, Fq, FqGadget>();
}