pub struct ConstraintCounter {
    pub num_public_variables: usize,
    pub num_private_variables: usize,
    pub num_constraints: usize,
}
Expand description

Constraint counter for testing purposes.

Fields§

§num_public_variables: usize§num_private_variables: usize§num_constraints: usize

Trait Implementations§

source§

impl<ConstraintF: Field> ConstraintSystem<ConstraintF> for ConstraintCounter

§

type Root = ConstraintCounter

Represents the type of the “root” of this constraint system so that nested namespaces can minimize indirection.
source§

fn alloc<F, A, AR>(&mut self, _: A, _: F) -> Result<Variable, SynthesisError>where F: FnOnce() -> Result<ConstraintF, 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<F, A, AR>( &mut self, _: A, _: F ) -> Result<Variable, SynthesisError>where F: FnOnce() -> Result<ConstraintF, 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, _: A, _: LA, _: LB, _: LC)where A: FnOnce() -> AR, AR: AsRef<str>, LA: FnOnce(LinearCombination<ConstraintF>) -> LinearCombination<ConstraintF>, LB: FnOnce(LinearCombination<ConstraintF>) -> LinearCombination<ConstraintF>, LC: FnOnce(LinearCombination<ConstraintF>) -> LinearCombination<ConstraintF>,

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, N>(&mut self, _: N)where NR: AsRef<str>, N: FnOnce() -> NR,

Create a new (sub)namespace and enter into it. Not intended for downstream use; use namespace instead.
source§

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

Gets the “root” constraint system, bypassing the namespacing. Not intended for downstream use; use namespace instead.
source§

fn num_constraints(&self) -> usize

Output the number of constraints in the system.
source§

fn num_public_variables(&self) -> usize

Output the number of public input variables to the system.
source§

fn num_private_variables(&self) -> usize

Output the number of private input variables to the system.
source§

fn is_in_setup_mode(&self) -> bool

Output whether the constraint system is in the setup mode.
source§

fn one() -> Variable

Return the “one” input variable
source§

fn ns<NR, N>(&mut self, name_fn: N) -> Namespace<'_, F, Self::Root>where NR: AsRef<str>, N: FnOnce() -> NR,

Begin a namespace for this constraint system.
source§

impl Default for ConstraintCounter

source§

fn default() -> ConstraintCounter

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V