Struct snarkvm_algorithms::r1cs::TestConstraintChecker
source · pub struct TestConstraintChecker<F: Field> { /* private fields */ }
Expand description
Constraint system for testing purposes.
Implementations§
source§impl<F: Field> TestConstraintChecker<F>
impl<F: Field> TestConstraintChecker<F>
pub fn new() -> Self
pub fn which_is_unsatisfied(&self) -> Option<String>
pub fn is_satisfied(&self) -> bool
pub fn num_constraints(&self) -> usize
pub fn public_inputs(&self) -> Vec<F>
Trait Implementations§
source§impl<F: Field> ConstraintSystem<F> for TestConstraintChecker<F>
impl<F: Field> ConstraintSystem<F> for TestConstraintChecker<F>
§type Root = TestConstraintChecker<F>
type Root = TestConstraintChecker<F>
Represents the type of the “root” of this constraint system
so that nested namespaces can minimize indirection.
source§fn alloc<Fn, A, AR>(
&mut self,
_annotation: A,
f: Fn
) -> Result<Variable, SynthesisError>where
Fn: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
fn alloc<Fn, A, AR>( &mut self, _annotation: A, f: Fn ) -> Result<Variable, SynthesisError>where Fn: FnOnce() -> Result<F, SynthesisError>, A: FnOnce() -> AR, AR: AsRef<str>,
Allocate a private variable in the constraint system. The provided
function is used to determine the assignment of the variable. The
given
annotation
function is invoked in testing contexts in order
to derive a unique name for this variable in the current namespace.source§fn alloc_input<Fn, A, AR>(
&mut self,
_annotation: A,
f: Fn
) -> Result<Variable, SynthesisError>where
Fn: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
fn alloc_input<Fn, A, AR>( &mut self, _annotation: A, f: Fn ) -> Result<Variable, SynthesisError>where Fn: FnOnce() -> Result<F, SynthesisError>, A: FnOnce() -> AR, AR: AsRef<str>,
Allocate a public variable in the constraint system. The provided
function is used to determine the assignment of the variable.
source§fn enforce<A, AR, LA, LB, LC>(&mut self, annotation: A, a: LA, b: LB, c: LC)where
A: FnOnce() -> AR,
AR: AsRef<str>,
LA: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LB: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LC: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
fn enforce<A, AR, LA, LB, LC>(&mut self, annotation: A, a: LA, b: LB, c: LC)where A: FnOnce() -> AR, AR: AsRef<str>, LA: FnOnce(LinearCombination<F>) -> LinearCombination<F>, LB: FnOnce(LinearCombination<F>) -> LinearCombination<F>, LC: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
Enforce that
A
* B
= C
. The annotation
function is invoked in
testing contexts in order to derive a unique name for the constraint
in the current namespace.source§fn push_namespace<NR: AsRef<str>, N: FnOnce() -> NR>(&mut self, name_fn: N)
fn push_namespace<NR: AsRef<str>, N: FnOnce() -> NR>(&mut self, name_fn: N)
Create a new (sub)namespace and enter into it. Not intended
for downstream use; use
namespace
instead.source§fn pop_namespace(&mut self)
fn pop_namespace(&mut self)
Exit out of the existing namespace. Not intended for
downstream use; use
namespace
instead.source§fn get_root(&mut self) -> &mut Self::Root
fn get_root(&mut self) -> &mut Self::Root
Gets the “root” constraint system, bypassing the namespacing.
Not intended for downstream use; use
namespace
instead.source§fn num_constraints(&self) -> usize
fn num_constraints(&self) -> usize
Output the number of constraints in the system.
source§fn num_public_variables(&self) -> usize
fn num_public_variables(&self) -> usize
Output the number of public input variables to the system.
source§fn num_private_variables(&self) -> usize
fn num_private_variables(&self) -> usize
Output the number of private input variables to the system.
source§fn is_in_setup_mode(&self) -> bool
fn is_in_setup_mode(&self) -> bool
Output whether the constraint system is in the setup mode.
Auto Trait Implementations§
impl<F> RefUnwindSafe for TestConstraintChecker<F>where F: RefUnwindSafe,
impl<F> Send for TestConstraintChecker<F>
impl<F> Sync for TestConstraintChecker<F>
impl<F> Unpin for TestConstraintChecker<F>where F: Unpin,
impl<F> UnwindSafe for TestConstraintChecker<F>where F: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more