This commit is contained in:
Nicholas Ward 2021-11-10 09:53:09 -08:00
parent 6b294c1d97
commit 8440a0f5cb

View File

@ -87,7 +87,7 @@ pub struct CircuitBuilder<F: RichField + Extendable<D>, const D: usize> {
// of switches
pub(crate) current_switch_gates: Vec<Option<(SwitchGate<F, D>, usize, usize)>>,
// The `U32ArithmeticGate` currently being filled (so new u32 arithmetic operations will be added to this gate before creating a new one)
/// The `U32ArithmeticGate` currently being filled (so new u32 arithmetic operations will be added to this gate before creating a new one)
pub(crate) current_u32_arithmetic_gate: Option<(usize, usize)>,
/// An available `ConstantGate` instance, if any.