Batch polynomial evaluations (#154)

* Ability to collect evaluation claims

* defer polynomial evaluation claims

* address cargo clippy
This commit is contained in:
Srinath Setty
2023-03-27 17:59:52 -07:00
committed by GitHub
parent 7b1bb44e45
commit 4aab459050
6 changed files with 429 additions and 258 deletions

View File

@@ -1095,8 +1095,8 @@ mod tests {
assert_eq!(zn_secondary, vec![<G2 as Group>::Scalar::from(2460515u64)]);
// run the compressed snark with Spark compiler
type CC1Prime = spartan::spark::SparkEngine<G1, EE1>;
type CC2Prime = spartan::spark::SparkEngine<G2, EE2>;
type CC1Prime = spartan::spark::SparkEngine<G1>;
type CC2Prime = spartan::spark::SparkEngine<G2>;
type S1Prime = spartan::RelaxedR1CSSNARK<G1, EE1, CC1Prime>;
type S2Prime = spartan::RelaxedR1CSSNARK<G2, EE2, CC2Prime>;