mirror of
https://github.com/arnaucube/ark-r1cs-std.git
synced 2026-02-05 01:56:41 +01:00
11 lines
260 B
Rust
11 lines
260 B
Rust
use crate::fields::fp::FpVar;
|
|
use algebra::ed_on_mnt4_753::fq::Fq;
|
|
|
|
/// A variable that is the R1CS equivalent of `algebra::ed_on_mnt4_753::Fq`.
|
|
pub type FqVar = FpVar<Fq>;
|
|
|
|
#[test]
|
|
fn test() {
|
|
crate::fields::tests::field_test::<_, _, FqVar>().unwrap();
|
|
}
|