mirror of
https://github.com/arnaucube/ark-r1cs-std.git
synced 2026-01-29 23:16:40 +01:00
10 lines
184 B
Rust
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>();
|
|
}
|