You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
use crate::groups::curves::twisted_edwards::AffineVar;
|
|
use algebra::ed_on_mnt4_298::*;
|
|
|
|
use crate::instantiated::ed_on_mnt4_298::fields::FqVar;
|
|
|
|
/// A variable that is the R1CS equivalent of `algebra::ed_on_mnt4_298::EdwardsAffine`.
|
|
pub type EdwardsVar = AffineVar<EdwardsParameters, FqVar>;
|
|
|
|
#[test]
|
|
fn test() {
|
|
crate::groups::curves::twisted_edwards::test::<EdwardsParameters, EdwardsVar>().unwrap();
|
|
}
|