[][src]Struct snarkos_models::gadgets::r1cs::TestConstraintSystem

pub struct TestConstraintSystem<F: Field> {
    pub constraints: Vec<(LinearCombination<F>, LinearCombination<F>, LinearCombination<F>, String)>,
    // some fields omitted
}

Constraint system for testing purposes.

Fields

constraints: Vec<(LinearCombination<F>, LinearCombination<F>, LinearCombination<F>, String)>

Implementations

impl<F: Field> TestConstraintSystem<F>[src]

pub fn new() -> TestConstraintSystem<F>[src]

pub fn print_named_objects(&self)[src]

pub fn which_is_unsatisfied(&self) -> Option<&str>[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

Auto Trait Implementations

impl<F> RefUnwindSafe for TestConstraintSystem<F> where
    F: RefUnwindSafe

impl<F> Send for TestConstraintSystem<F>

impl<F> Sync for TestConstraintSystem<F>

impl<F> Unpin for TestConstraintSystem<F> where
    F: Unpin

impl<F> UnwindSafe for TestConstraintSystem<F> where
    F: RefUnwindSafe + UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,