Struct snarkvm_wasm::TestConstraintSystem [−][src]
pub struct TestConstraintSystem<F> where
F: Field, { /* fields omitted */ }
Expand description
Constraint system for testing purposes.
Implementations
impl<F> TestConstraintSystem<F> where
F: Field,
[src]
impl<F> TestConstraintSystem<F> where
F: Field,
[src]pub fn new() -> TestConstraintSystem<F>
[src]
pub fn print_named_objects(&self)
[src]
pub fn which_is_unsatisfied(&self) -> Option<String>
[src]
pub fn is_satisfied(&self) -> bool
[src]
pub fn num_constraints(&self) -> usize
[src]
pub fn set(&mut self, path: &str, to: F)
[src]
pub fn get(&mut self, path: &str) -> F
[src]
Trait Implementations
impl<F> ConstraintSystem<F> for TestConstraintSystem<F> where
F: Field,
[src]
impl<F> ConstraintSystem<F> for TestConstraintSystem<F> where
F: Field,
[src]type Root = TestConstraintSystem<F>
type Root = TestConstraintSystem<F>
Represents the type of the “root” of this constraint system so that nested namespaces can minimize indirection. Read more
pub 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>,
[src]
pub 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>,
[src]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. Read more
pub 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>,
[src]
pub 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>,
[src]Allocate a public variable in the constraint system. The provided function is used to determine the assignment of the variable. Read more
pub fn enforce<A, AR, LA, LB, LC>(&mut self, annotation: A, a: LA, b: LB, c: LC) where
LC: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
A: FnOnce() -> AR,
AR: AsRef<str>,
LA: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LB: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
[src]
pub fn enforce<A, AR, LA, LB, LC>(&mut self, annotation: A, a: LA, b: LB, c: LC) where
LC: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
A: FnOnce() -> AR,
AR: AsRef<str>,
LA: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LB: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
[src]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. Read more
pub fn push_namespace<NR, N>(&mut self, name_fn: N) where
N: FnOnce() -> NR,
NR: AsRef<str>,
[src]
pub fn push_namespace<NR, N>(&mut self, name_fn: N) where
N: FnOnce() -> NR,
NR: AsRef<str>,
[src]Create a new (sub)namespace and enter into it. Not intended
for downstream use; use namespace
instead. Read more
pub fn pop_namespace(&mut self)
[src]
pub fn pop_namespace(&mut self)
[src]Exit out of the existing namespace. Not intended for
downstream use; use namespace
instead. Read more
pub fn get_root(
&mut self
) -> &mut <TestConstraintSystem<F> as ConstraintSystem<F>>::Root
[src]
pub fn get_root(
&mut self
) -> &mut <TestConstraintSystem<F> as ConstraintSystem<F>>::Root
[src]Gets the “root” constraint system, bypassing the namespacing.
Not intended for downstream use; use namespace
instead. Read more
pub fn num_constraints(&self) -> usize
[src]
pub fn num_constraints(&self) -> usize
[src]Output the number of constraints in the system.
pub fn num_public_variables(&self) -> usize
[src]
pub fn num_public_variables(&self) -> usize
[src]Output the number of public input variables to the system.
pub fn num_private_variables(&self) -> usize
[src]
pub fn num_private_variables(&self) -> usize
[src]Output the number of private input variables to the system.
impl<F> Default for TestConstraintSystem<F> where
F: Field,
[src]
impl<F> Default for TestConstraintSystem<F> where
F: Field,
[src]pub fn default() -> TestConstraintSystem<F>
[src]
pub fn default() -> TestConstraintSystem<F>
[src]Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<F> RefUnwindSafe for TestConstraintSystem<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
impl<F> Send for TestConstraintSystem<F>
impl<F> Sync for TestConstraintSystem<F>
impl<F> Unpin for TestConstraintSystem<F> where
F: Unpin,
F: Unpin,
impl<F> UnwindSafe for TestConstraintSystem<F> where
F: UnwindSafe,
F: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,