mirror of
https://github.com/arnaucube/ark-r1cs-std.git
synced 2026-01-20 04:11:29 +01:00
12 lines
281 B
Rust
12 lines
281 B
Rust
use crate::groups::curves::twisted_edwards::AffineGadget;
|
|
use algebra::jubjub::*;
|
|
|
|
use crate::jubjub::FqGadget;
|
|
|
|
pub type JubJubGadget = AffineGadget<JubJubParameters, Fq, FqGadget>;
|
|
|
|
#[test]
|
|
fn test() {
|
|
crate::groups::curves::twisted_edwards::test::<Fq, _, JubJubGadget>();
|
|
}
|