Type Definition kimchi::circuits::expr::Expr

source ·
pub type Expr<C, Column> = Operations<ExprInner<C, Column>>;
Expand description

An multi-variate polynomial over the base ring C with variables

  • Cell(v) for v : Variable
  • VanishesOnZeroKnowledgeAndPreviousRows
  • UnnormalizedLagrangeBasis(i) for i : i32

This represents a PLONK “custom constraint”, which enforces that the corresponding combination of the polynomials corresponding to the above variables should vanish on the PLONK domain.

Implementations§

source§

impl<C, Column> Expr<C, Column>

source

pub fn cell(col: Column, row: CurrOrNext) -> Expr<C, Column>

Convenience function for constructing cell variables.

source

pub fn double(self) -> Self

source

pub fn square(self) -> Self

source

pub fn constant(c: C) -> Expr<C, Column>

Convenience function for constructing constant expressions.

source

pub fn degree(&self, d1_size: u64, zk_rows: u64) -> u64

Return the degree of the expression. The degree of a cell is defined by the first argument d1_size, a constant being of degree zero. The degree of the expression is defined recursively using the definition of the degree of a multivariate polynomial. The function can be (and is) used to compute the domain size, hence the name of the first argument d1_size. The second parameter zk_rows is used to define the degree of the constructor VanishesOnZeroKnowledgeAndPreviousRows.

source§

impl<F: Field, Column: PartialEq + Copy> Expr<ConstantExpr<F>, Column>

source

pub fn literal(x: F) -> Self

Convenience function for constructing expressions from literal field elements.

source

pub fn combine_constraints( alphas: impl Iterator<Item = u32>, cs: Vec<Self> ) -> Self

Combines multiple constraints [c0, ..., cn] into a single constraint alpha^alpha0 * c0 + alpha^{alpha0 + 1} * c1 + ... + alpha^{alpha0 + n} * cn.

source§

impl<F: FftField, Column: Copy> Expr<ConstantExpr<F>, Column>

source

pub fn to_polish(&self) -> Vec<PolishToken<F, Column>>

Compile an expression to an RPN expression.

source

pub fn beta() -> Self

The expression beta.

source§

impl<F: FftField, Column: PartialEq + Copy> Expr<ConstantExpr<F>, Column>

source

pub fn evaluate<'a, Evaluations: ColumnEvaluations<F, Column = Column>, Environment: ColumnEnvironment<'a, F, Column = Column>>( &self, d: D<F>, pt: F, evals: &Evaluations, env: &Environment ) -> Result<F, ExprError<Column>>

Evaluate an expression as a field element against an environment.

source

pub fn evaluate_<Evaluations: ColumnEvaluations<F, Column = Column>>( &self, d: D<F>, pt: F, evals: &Evaluations, c: &Constants<F>, chals: &Challenges<F> ) -> Result<F, ExprError<Column>>

Evaluate an expression as a field element against the constants.

source

pub fn evaluate_constants<'a, Environment: ColumnEnvironment<'a, F, Column = Column>>( &self, env: &Environment ) -> Expr<F, Column>

Evaluate the constant expressions in this expression down into field elements.

source

pub fn evaluations<'a, Environment: ColumnEnvironment<'a, F, Column = Column>>( &self, env: &Environment ) -> Evaluations<F, D<F>>

Compute the polynomial corresponding to this expression, in evaluation form. The routine will first replace the constants (verifier challenges and constants like the matrix used by Poseidon) in the expression with their respective values using evaluate_constants and will after evaluate the monomials with the corresponding column values using the method evaluations.

source§

impl<F: FftField, Column: Copy> Expr<F, Column>

source

pub fn evaluate<Evaluations: ColumnEvaluations<F, Column = Column>>( &self, d: D<F>, pt: F, zk_rows: u64, evals: &Evaluations ) -> Result<F, ExprError<Column>>

Evaluate an expression into a field element.

source

pub fn evaluations<'a, Environment: ColumnEnvironment<'a, F, Column = Column>>( &self, env: &Environment ) -> Evaluations<F, D<F>>

Compute the polynomial corresponding to this expression, in evaluation form.

source§

impl<F: Neg<Output = F> + Clone + One + Zero + PartialEq, Column: Ord + Copy + Hash> Expr<F, Column>where ExprInner<F, Column>: Literal, <ExprInner<F, Column> as Literal>::F: Field,

source

pub fn linearize( &self, evaluated: HashSet<Column> ) -> Result<Linearization<Expr<F, Column>, Column>, ExprError<Column>>

There is an optimization in PLONK called “linearization” in which a certain polynomial is expressed as a linear combination of other polynomials in order to reduce the number of evaluations needed in the IOP (by relying on the homomorphic property of the polynomial commitments used.)

The function performs this “linearization”, which we now describe in some detail.

In mathematical language, an expression e: Expr<F> is an element of the polynomial ring F[V], where V is a set of variables.

Given a subset V_0 of V (and letting V_1 = V \setminus V_0), there is a map factor_{V_0}: F[V] -> (F[V_1])[V_0]. That is, polynomials with F coefficients in the variables V = V_0 \cup V_1 are the same thing as polynomials with F[V_1] coefficients in variables V_0.

There is also a function lin_or_err : (F[V_1])[V_0] -> Result<Vec<(V_0, F[V_1])>, &str>

which checks if the given input is in fact a degree 1 polynomial in the variables V_0 (i.e., a linear combination of V_0 elements with F[V_1] coefficients) returning this linear combination if so.

Given an expression e and set of columns C_0, letting V_0 = { Variable { col: c, row: r } | c in C_0, r in { Curr, Next } }, this function computes lin_or_err(factor_{V_0}(e)), although it does not compute it in that way. Instead, it computes it by reducing the expression into a sum of monomials with F coefficients, and then factors the monomials.

source§

impl<F, Column: FormattedOutput + Debug + Clone> Expr<ConstantExpr<F>, Column>where F: PrimeField,

source

pub fn ocaml_str(&self) -> String

Converts the expression in OCaml code

source

pub fn latex_str(&self) -> Vec<String>

Converts the expression in LaTeX

source

pub fn text_str(&self) -> String

Converts the expression to a text string

Trait Implementations§

source§

impl<F: Zero + Clone, Column: Clone> AddAssign<Operations<ExprInner<F, Column>>> for Expr<F, Column>where ExprInner<F, Column>: Literal, <ExprInner<F, Column> as Literal>::F: Field,

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl<F, Column: FormattedOutput + Debug + Clone> Display for Expr<ConstantExpr<F>, Column>where F: PrimeField,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<F> ExprOps<F> for Expr<ConstantExpr<F>, Column>where F: PrimeField, Expr<ConstantExpr<F>, Column>: Display,

source§

fn two_pow(pow: u64) -> Self

2^pow
source§

fn two_to_limb() -> Self

2^{LIMB_BITS}
source§

fn two_to_2limb() -> Self

2^{2 * LIMB_BITS}
source§

fn two_to_3limb() -> Self

2^{3 * LIMB_BITS}
source§

fn double(&self) -> Self

Double the value
source§

fn square(&self) -> Self

Compute the square of this value
source§

fn pow(&self, p: u64) -> Self

Raise the value to the given power
source§

fn boolean(&self) -> Self

Constrain to boolean
source§

fn crumb(&self) -> Self

Constrain to crumb (i.e. two bits)
source§

fn literal(x: F) -> Self

Create a literal
source§

fn witness(row: CurrOrNext, col: usize, _: Option<&ArgumentData<F>>) -> Self

source§

fn coeff(col: usize, _: Option<&ArgumentData<F>>) -> Self

Coefficient
source§

fn constant(expr: ConstantExpr<F>, _: Option<&ArgumentData<F>>) -> Self

Create a constant
source§

fn cache(&self, cache: &mut Cache) -> Self

Cache item
source§

impl<F, Column> From<ChallengeTerm> for Expr<ConstantExpr<F>, Column>

source§

fn from(x: ChallengeTerm) -> Self

Converts to this type from the input type.
source§

impl<F, Column> From<ConstantTerm<F>> for Expr<ConstantExpr<F>, Column>

source§

fn from(x: ConstantTerm<F>) -> Self

Converts to this type from the input type.
source§

impl<F, Column> From<Operations<ConstantExprInner<F>>> for Expr<ConstantExpr<F>, Column>

source§

fn from(x: ConstantExpr<F>) -> Self

Converts to this type from the input type.
source§

impl<F: Field, Column> From<u64> for Expr<ConstantExpr<F>, Column>

source§

fn from(x: u64) -> Self

Converts to this type from the input type.
source§

impl<F: Field, Column> From<u64> for Expr<F, Column>

source§

fn from(x: u64) -> Self

Converts to this type from the input type.
source§

impl<F: Field, Column: PartialEq + Copy> Mul<F> for Expr<ConstantExpr<F>, Column>

§

type Output = Operations<ExprInner<Operations<ConstantExprInner<F>>, Column>>

The resulting type after applying the * operator.
source§

fn mul(self, y: F) -> Self::Output

Performs the * operation. Read more
source§

impl<F, Column> MulAssign<Operations<ExprInner<F, Column>>> for Expr<F, Column>where F: Zero + One + PartialEq + Clone, Column: PartialEq + Clone, ExprInner<F, Column>: Literal, <ExprInner<F, Column> as Literal>::F: Field,

source§

fn mul_assign(&mut self, other: Self)

Performs the *= operation. Read more