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

13 lines
362 B
Rust

use crate::groups::curves::twisted_edwards::AffineVar;
use algebra::ed_on_bn254::*;
use crate::ed_on_bn254::FqVar;
/// A variable that is the R1CS equivalent of `algebra::ed_on_bn254::EdwardsAffine`.
pub type EdwardsVar = AffineVar<EdwardsParameters, FqVar>;
#[test]
fn test() {
crate::groups::curves::twisted_edwards::test::<_, EdwardsVar>().unwrap();
}