Enum halo2_proofs::plonk::Expression  
source · [−]pub enum Expression<F> {
    Constant(F),
    Selector(Selector),
    Fixed(FixedQuery),
    Advice(AdviceQuery),
    Instance(InstanceQuery),
    Challenge(Challenge),
    Negated(Box<Expression<F>>),
    Sum(Box<Expression<F>>, Box<Expression<F>>),
    Product(Box<Expression<F>>, Box<Expression<F>>),
    Scaled(Box<Expression<F>>, F),
}Expand description
Low-degree expression representing an identity that must hold over the committed columns.
Variants
Constant(F)
This is a constant polynomial
Selector(Selector)
This is a virtual selector
Fixed(FixedQuery)
This is a fixed column queried at a certain relative location
Advice(AdviceQuery)
This is an advice (witness) column queried at a certain relative location
Instance(InstanceQuery)
This is an instance (external) column queried at a certain relative location
Challenge(Challenge)
This is a challenge
Negated(Box<Expression<F>>)
This is a negated polynomial
Sum(Box<Expression<F>>, Box<Expression<F>>)
This is the sum of two polynomials
Product(Box<Expression<F>>, Box<Expression<F>>)
This is the product of two polynomials
Scaled(Box<Expression<F>>, F)
This is a scaled polynomial
Implementations
sourceimpl<F: Field> Expression<F>
 
impl<F: Field> Expression<F>
sourcepub fn evaluate<T>(
    &self,
    constant: &impl Fn(F) -> T,
    selector_column: &impl Fn(Selector) -> T,
    fixed_column: &impl Fn(FixedQuery) -> T,
    advice_column: &impl Fn(AdviceQuery) -> T,
    instance_column: &impl Fn(InstanceQuery) -> T,
    challenge: &impl Fn(Challenge) -> T,
    negated: &impl Fn(T) -> T,
    sum: &impl Fn(T, T) -> T,
    product: &impl Fn(T, T) -> T,
    scaled: &impl Fn(T, F) -> T
) -> T
 
pub fn evaluate<T>(
    &self,
    constant: &impl Fn(F) -> T,
    selector_column: &impl Fn(Selector) -> T,
    fixed_column: &impl Fn(FixedQuery) -> T,
    advice_column: &impl Fn(AdviceQuery) -> T,
    instance_column: &impl Fn(InstanceQuery) -> T,
    challenge: &impl Fn(Challenge) -> T,
    negated: &impl Fn(T) -> T,
    sum: &impl Fn(T, T) -> T,
    product: &impl Fn(T, T) -> T,
    scaled: &impl Fn(T, F) -> T
) -> T
Evaluate the polynomial using the provided closures to perform the operations.
sourcepub fn evaluate_lazy<T: PartialEq>(
    &self,
    constant: &impl Fn(F) -> T,
    selector_column: &impl Fn(Selector) -> T,
    fixed_column: &impl Fn(FixedQuery) -> T,
    advice_column: &impl Fn(AdviceQuery) -> T,
    instance_column: &impl Fn(InstanceQuery) -> T,
    challenge: &impl Fn(Challenge) -> T,
    negated: &impl Fn(T) -> T,
    sum: &impl Fn(T, T) -> T,
    product: &impl Fn(T, T) -> T,
    scaled: &impl Fn(T, F) -> T,
    zero: &T
) -> T
 
pub fn evaluate_lazy<T: PartialEq>(
    &self,
    constant: &impl Fn(F) -> T,
    selector_column: &impl Fn(Selector) -> T,
    fixed_column: &impl Fn(FixedQuery) -> T,
    advice_column: &impl Fn(AdviceQuery) -> T,
    instance_column: &impl Fn(InstanceQuery) -> T,
    challenge: &impl Fn(Challenge) -> T,
    negated: &impl Fn(T) -> T,
    sum: &impl Fn(T, T) -> T,
    product: &impl Fn(T, T) -> T,
    scaled: &impl Fn(T, F) -> T,
    zero: &T
) -> T
Evaluate the polynomial lazily using the provided closures to perform the operations.
sourcepub fn identifier(&self) -> String
 
pub fn identifier(&self) -> String
Identifier for this expression. Expressions with identical identifiers
do the same calculation (but the expressions don’t need to be exactly equal
in how they are composed e.g. 1 + 2 and 2 + 1 can have the same identifier).
sourcepub fn complexity(&self) -> usize
 
pub fn complexity(&self) -> usize
Approximate the computational complexity of this expression.
Trait Implementations
sourceimpl<F: Field> Add<Expression<F>> for Expression<F>
 
impl<F: Field> Add<Expression<F>> for Expression<F>
type Output = Expression<F>
type Output = Expression<F>
+ operator.sourcefn add(self, rhs: Expression<F>) -> Expression<F>
 
fn add(self, rhs: Expression<F>) -> Expression<F>
+ operation. Read moresourceimpl<F: Clone> Clone for Expression<F>
 
impl<F: Clone> Clone for Expression<F>
sourcefn clone(&self) -> Expression<F>
 
fn clone(&self) -> Expression<F>
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresourceimpl<F: Debug> Debug for Expression<F>
 
impl<F: Debug> Debug for Expression<F>
sourceimpl<F: Field> From<Expression<F>> for Constraint<F>
 
impl<F: Field> From<Expression<F>> for Constraint<F>
sourcefn from(poly: Expression<F>) -> Self
 
fn from(poly: Expression<F>) -> Self
sourceimpl<F: Field> From<Expression<F>> for Vec<Constraint<F>>
 
impl<F: Field> From<Expression<F>> for Vec<Constraint<F>>
sourcefn from(poly: Expression<F>) -> Self
 
fn from(poly: Expression<F>) -> Self
sourceimpl<F: Field> Mul<Expression<F>> for Expression<F>
 
impl<F: Field> Mul<Expression<F>> for Expression<F>
type Output = Expression<F>
type Output = Expression<F>
* operator.sourcefn mul(self, rhs: Expression<F>) -> Expression<F>
 
fn mul(self, rhs: Expression<F>) -> Expression<F>
* operation. Read moresourceimpl<F: Field> Mul<F> for Expression<F>
 
impl<F: Field> Mul<F> for Expression<F>
type Output = Expression<F>
type Output = Expression<F>
* operator.sourcefn mul(self, rhs: F) -> Expression<F>
 
fn mul(self, rhs: F) -> Expression<F>
* operation. Read moresourceimpl<F: Field> Neg for Expression<F>
 
impl<F: Field> Neg for Expression<F>
sourceimpl<F: Field> Sub<Expression<F>> for Expression<F>
 
impl<F: Field> Sub<Expression<F>> for Expression<F>
type Output = Expression<F>
type Output = Expression<F>
- operator.sourcefn sub(self, rhs: Expression<F>) -> Expression<F>
 
fn sub(self, rhs: Expression<F>) -> Expression<F>
- operation. Read moreAuto Trait Implementations
impl<F> RefUnwindSafe for Expression<F>where
    F: RefUnwindSafe,
impl<F> Send for Expression<F>where
    F: Send,
impl<F> Sync for Expression<F>where
    F: Sync,
impl<F> Unpin for Expression<F>where
    F: Unpin,
impl<F> UnwindSafe for Expression<F>where
    F: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
impl<T> FmtForward for T
impl<T> FmtForward for T
fn fmt_binary(self) -> FmtBinary<Self>where
    Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
    Self: Binary,
self to use its Binary implementation when Debug-formatted.fn fmt_display(self) -> FmtDisplay<Self>where
    Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
    Self: Display,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
    Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
    Self: LowerExp,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
    Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
    Self: LowerHex,
fn fmt_octal(self) -> FmtOctal<Self>where
    Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
    Self: Octal,
self to use its Octal implementation when Debug-formatted.fn fmt_pointer(self) -> FmtPointer<Self>where
    Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
    Self: Pointer,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
    Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
    Self: UpperExp,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
    Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
    Self: UpperHex,
fn fmt_list(self) -> FmtList<Self>where
    &'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
    &'a Self: for<'a> IntoIterator,
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pipe for Twhere
    T: ?Sized,
impl<T> Pipe for Twhere
    T: ?Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
    Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
    Self: Sized,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
    R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
    R: 'a,
self and passes that borrow into the pipe function. Read morefn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
    R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
    R: 'a,
self and passes that borrow into the pipe function. Read morefn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
    Self: Borrow<B>,
    B: 'a + ?Sized,
    R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
    Self: Borrow<B>,
    B: 'a + ?Sized,
    R: 'a,
fn pipe_borrow_mut<'a, B, R>(
    &'a mut self,
    func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
    Self: BorrowMut<B>,
    B: 'a + ?Sized,
    R: 'a,
fn pipe_borrow_mut<'a, B, R>(
    &'a mut self,
    func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
    Self: BorrowMut<B>,
    B: 'a + ?Sized,
    R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
    Self: AsRef<U>,
    U: 'a + ?Sized,
    R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
    Self: AsRef<U>,
    U: 'a + ?Sized,
    R: 'a,
self, then passes self.as_ref() into the pipe function.fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
    Self: AsMut<U>,
    U: 'a + ?Sized,
    R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
    Self: AsMut<U>,
    U: 'a + ?Sized,
    R: 'a,
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> Rwhere
    Self: Deref<Target = T>,
    T: 'a + ?Sized,
    R: 'a,
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> Rwhere
    Self: Deref<Target = T>,
    T: 'a + ?Sized,
    R: 'a,
self, then passes self.deref() into the pipe function.impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Tap for T
impl<T> Tap for T
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
    Self: Borrow<B>,
    B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
    Self: Borrow<B>,
    B: ?Sized,
Borrow<B> of a value. Read morefn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
    Self: BorrowMut<B>,
    B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
    Self: BorrowMut<B>,
    B: ?Sized,
BorrowMut<B> of a value. Read morefn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
    Self: AsRef<R>,
    R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
    Self: AsRef<R>,
    R: ?Sized,
AsRef<R> view of a value. Read morefn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
    Self: AsMut<R>,
    R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
    Self: AsMut<R>,
    R: ?Sized,
AsMut<R> view of a value. Read morefn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
    Self: Deref<Target = T>,
    T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
    Self: Deref<Target = T>,
    T: ?Sized,
Deref::Target of a value. Read morefn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
    Self: DerefMut<Target = T> + Deref,
    T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
    Self: DerefMut<Target = T> + Deref,
    T: ?Sized,
Deref::Target of a value. Read morefn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds. Read morefn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
    Self: Borrow<B>,
    B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
    Self: Borrow<B>,
    B: ?Sized,
.tap_borrow() only in debug builds, and is erased in release
builds. Read morefn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
    Self: BorrowMut<B>,
    B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
    Self: BorrowMut<B>,
    B: ?Sized,
.tap_borrow_mut() only in debug builds, and is erased in release
builds. Read morefn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
    Self: AsRef<R>,
    R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
    Self: AsRef<R>,
    R: ?Sized,
.tap_ref() only in debug builds, and is erased in release
builds. Read morefn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
    Self: AsMut<R>,
    R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
    Self: AsMut<R>,
    R: ?Sized,
.tap_ref_mut() only in debug builds, and is erased in release
builds. Read more