pub trait VmCircuitExtension<SC: StarkGenericConfig> {
// Required method
fn extend_circuit(
&self,
inventory: &mut AirInventory<SC>,
) -> Result<(), AirInventoryError>;
}
Expand description
Extension of the VM circuit. Allows in-order addition of new AIRs with interactions.