From fec3e2a2f8a5c4cb19e5b8c85ab7c2e05696bd1f Mon Sep 17 00:00:00 2001 From: Srinath Setty Date: Thu, 29 Feb 2024 12:57:09 -0800 Subject: [PATCH] update benchmark (#313) --- benches/compressed-snark.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benches/compressed-snark.rs b/benches/compressed-snark.rs index c0412431..7da57365 100644 --- a/benches/compressed-snark.rs +++ b/benches/compressed-snark.rs @@ -22,9 +22,9 @@ type EE2 = nova_snark::provider::ipa_pc::EvaluationEngine; // SNARKs without computational commitments type S1 = nova_snark::spartan::snark::RelaxedR1CSSNARK; type S2 = nova_snark::spartan::snark::RelaxedR1CSSNARK; -// SNARKs with computational commitments +// SNARKs with computational commitments for the primary curve type SS1 = nova_snark::spartan::ppsnark::RelaxedR1CSSNARK; -type SS2 = nova_snark::spartan::ppsnark::RelaxedR1CSSNARK; +type SS2 = nova_snark::spartan::snark::RelaxedR1CSSNARK; type C1 = NonTrivialCircuit<::Scalar>; type C2 = TrivialCircuit<::Scalar>;