We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0467e79 commit 7066356Copy full SHA for 7066356
src/backends/plonky2/recursion/circuit.rs
@@ -342,6 +342,7 @@ pub fn common_data_for_recursion<I: InnerCircuit>(
342
GateRef::new(plonky2::gates::random_access::RandomAccessGate::new_from_config(&config, 4)),
343
GateRef::new(plonky2::gates::random_access::RandomAccessGate::new_from_config(&config, 5)),
344
GateRef::new(plonky2::gates::random_access::RandomAccessGate::new_from_config(&config, 6)),
345
+ GateRef::new(plonky2::gates::exponentiation::ExponentiationGate::new(66)),
346
// It would be better do `CosetInterpolationGate::with_max_degree(4, 6)` but unfortunately
347
// that plonk2 method is `pub(crate)`, so we need to get around that somehow.
348
GateRef::new(coset_interpolation_gate(
0 commit comments