Implement CycleFold's EC RLC check circuit (#9)

This commit is contained in:
2023-08-29 08:49:48 +02:00
committed by GitHub
parent b4a0b50618
commit 9ae046c4fc
4 changed files with 72 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
/// Circuits and gadgets shared across the different folding schemes.
use ark_ec::CurveGroup;
use ark_ff::Field;
pub mod cyclefold;
pub type ConstraintF<C> = <<C as CurveGroup>::BaseField as Field>::BasePrimeField;