pub struct ConstraintBuilderEnv<F: PrimeField, LT: LookupTableID> {
    pub constraints: Vec<Expr<ConstantExpr<F, BerkeleyChallengeTerm>, Column>>,
    pub lookup_reads: BTreeMap<LT, Vec<Vec<E<F>>>>,
    pub lookup_writes: BTreeMap<LT, Vec<Vec<E<F>>>>,
    pub assert_mapper: Box<dyn Fn(E<F>) -> E<F>>,
}

Fields§

§constraints: Vec<Expr<ConstantExpr<F, BerkeleyChallengeTerm>, Column>>

An indexed set of constraints.

§lookup_reads: BTreeMap<LT, Vec<Vec<E<F>>>>

Aggregated lookups or “reads”.

§lookup_writes: BTreeMap<LT, Vec<Vec<E<F>>>>

Aggregated “write” lookups, for runtime tables.

§assert_mapper: Box<dyn Fn(E<F>) -> E<F>>

The function that maps the argument of assert_zero.

Implementations§

source§

impl<F: PrimeField, LT: LookupTableID> ConstraintBuilderEnv<F, LT>

source

pub fn create() -> Self

source§

impl<F: PrimeField, LT: LookupTableID> ConstraintBuilderEnv<F, LT>

source

pub fn get_relation_constraints(&self) -> Vec<E<F>>

Get constraints related to the application logic itself.

source

pub fn get_lookup_constraints(&self) -> Vec<E<F>>

Get constraints related to the lookup argument.

source

pub fn get_constraints(&self) -> Vec<E<F>>

Get all relevant constraints generated by the constraint builder.

Trait Implementations§

source§

impl<F: PrimeField, CIx: ColumnIndexer, LT: LookupTableID> ColAccessCap<F, CIx> for ConstraintBuilderEnv<F, LT>

§

type Variable = Operations<ExprInner<Operations<ConstantExprInner<F, BerkeleyChallengeTerm>>, Column>>

source§

fn assert_zero(&mut self, cst: Self::Variable)

Asserts that the value is zero.
source§

fn set_assert_mapper( &mut self, mapper: Box<dyn Fn(Self::Variable) -> Self::Variable> )

Sets an assert predicate f(X) such that when assert_zero is called on x, it will actually perform assert_zero(f(x)).
source§

fn read_column(&self, position: CIx) -> Self::Variable

Reads value from a column position.
source§

fn constant(value: F) -> Self::Variable

Turns a constant value into a variable.
source§

impl<F: PrimeField, CIx: ColumnIndexer, LT: LookupTableID> HybridCopyCap<F, CIx> for ConstraintBuilderEnv<F, LT>

source§

fn hcopy(&mut self, x: &Self::Variable, position: CIx) -> Self::Variable

Given variable x and position ix, it (hybrid) writes x into ix, and returns the value.
source§

impl<F: PrimeField, CIx: ColumnIndexer, LT: LookupTableID> HybridSerHelpers<F, CIx, LT> for ConstraintBuilderEnv<F, LT>

source§

fn bitmask_be( &mut self, _x: &<Self as ColAccessCap<F, CIx>>::Variable, _highest_bit: u32, _lowest_bit: u32, position: CIx ) -> <Self as ColAccessCap<F, CIx>>::Variable

Returns the bits between [highest_bit, lowest_bit] of the variable x, and copy the result in the column position. The value x is expected to be encoded in big-endian
source§

impl<F: PrimeField, CIx: ColumnIndexer, LT: LookupTableID> LookupCap<F, CIx, LT> for ConstraintBuilderEnv<F, LT>

source§

fn lookup( &mut self, table_id: LT, value: Vec<<Self as ColAccessCap<F, CIx>>::Variable> )

Look up (read) value from a lookup table.
source§

fn lookup_runtime_write(&mut self, table_id: LT, value: Vec<Self::Variable>)

Write a value into a runtime table. Panics if called on a fixed table.

Auto Trait Implementations§

§

impl<F, LT> !RefUnwindSafe for ConstraintBuilderEnv<F, LT>

§

impl<F, LT> !Send for ConstraintBuilderEnv<F, LT>

§

impl<F, LT> !Sync for ConstraintBuilderEnv<F, LT>

§

impl<F, LT> Unpin for ConstraintBuilderEnv<F, LT>where F: Unpin,

§

impl<F, LT> !UnwindSafe for ConstraintBuilderEnv<F, LT>

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> Same<T> for T

§

type Output = T

Should always be Self
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