[−][src]Struct snarkvm_models::gadgets::r1cs::TestConstraintSystem
Constraint system for testing purposes.
Implementations
impl<F: Field> TestConstraintSystem<F>[src]
pub fn new() -> Self[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: Field> ConstraintSystem<F> for TestConstraintSystem<F>[src]
type Root = Self
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]
&mut self,
annotation: A,
f: Fn
) -> Result<Variable, SynthesisError> where
Fn: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
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]
&mut self,
annotation: A,
f: Fn
) -> Result<Variable, SynthesisError> where
Fn: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
pub 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>, [src]
A: FnOnce() -> AR,
AR: AsRef<str>,
LA: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LB: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LC: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
pub fn push_namespace<NR: AsRef<str>, N: FnOnce() -> NR>(&mut self, name_fn: N)[src]
pub fn pop_namespace(&mut self)[src]
pub fn get_root(&mut self) -> &mut Self::Root[src]
pub fn num_constraints(&self) -> usize[src]
pub fn one() -> Variable[src]
pub fn ns<NR, N>(&mut self, name_fn: N) -> Namespace<'_, F, Self::Root> where
NR: AsRef<str>,
N: FnOnce() -> NR, [src]
NR: AsRef<str>,
N: FnOnce() -> NR,
impl<F: Field> Default for TestConstraintSystem<F>[src]
Auto Trait Implementations
impl<F> RefUnwindSafe for TestConstraintSystem<F> where
F: RefUnwindSafe, [src]
F: RefUnwindSafe,
impl<F> Send for TestConstraintSystem<F>[src]
impl<F> Sync for TestConstraintSystem<F>[src]
impl<F> Unpin for TestConstraintSystem<F> where
F: Unpin, [src]
F: Unpin,
impl<F> UnwindSafe for TestConstraintSystem<F> where
F: UnwindSafe, [src]
F: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,