pub type AssignmentsExtractor<F> = ConstraintSystemExt<F, false, true>;Expand description
AssignmentsExtractor collects only the assignments (no constraint
matrices) from a synthesized circuit.
Aliased Type§
pub struct AssignmentsExtractor<F> { /* private fields */ }Implementations§
Source§impl<F: Field> AssignmentsExtractor<F>
impl<F: Field> AssignmentsExtractor<F>
Sourcepub fn assignments(self) -> Result<Assignments<F, Vec<F>>, SynthesisError>
pub fn assignments(self) -> Result<Assignments<F, Vec<F>>, SynthesisError>
AssignmentsExtractor::assignments extracts the assignments from the
circuit and returns them as Assignments.