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

pub struct ConstraintCounter {
    pub num_inputs: usize,
    pub num_aux: usize,
    pub num_constraints: usize,
}

Constraint counter for testing purposes.

Fields

num_inputs: usizenum_aux: usizenum_constraints: usize

Implementations

impl ConstraintCounter[src]

pub fn new() -> Self[src]

pub fn num_constraints(&self) -> usize[src]

Trait Implementations

impl<ConstraintF: Field> ConstraintSystem<ConstraintF> for ConstraintCounter[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

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>,