Enum kimchi::circuits::expr::ConstantTerm
source · pub enum ConstantTerm<F> {
EndoCoefficient,
Mds {
row: usize,
col: usize,
},
Literal(F),
}
Expand description
Define the constant terms an expression can use.
It can be any constant term (Literal
), a matrix (Mds
- used by the
permutation used by Poseidon for instance), or endomorphism coefficients
(EndoCoefficient
- used as an optimisation).
As for challengeTerm
, it has been used initially to implement the PLONK
IOP, with the custom gate Poseidon. However, the terms have no built-in
semantic in the expression framework.
TODO: we should generalize the expression type over challenges and constants.
See https://github.com/MinaProtocol/mina/issues/15287
Variants§
Trait Implementations§
source§impl<F: Clone> Clone for ConstantTerm<F>
impl<F: Clone> Clone for ConstantTerm<F>
source§fn clone(&self) -> ConstantTerm<F>
fn clone(&self) -> ConstantTerm<F>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<F: Debug> Debug for ConstantTerm<F>
impl<F: Debug> Debug for ConstantTerm<F>
source§impl<'de, F> Deserialize<'de> for ConstantTerm<F>where
F: Deserialize<'de>,
impl<'de, F> Deserialize<'de> for ConstantTerm<F>where F: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<F: PrimeField> FormattedOutput for ConstantTerm<F>
impl<F: PrimeField> FormattedOutput for ConstantTerm<F>
source§impl<F, ChallengeTerm> From<ConstantTerm<F>> for ConstantExpr<F, ChallengeTerm>
impl<F, ChallengeTerm> From<ConstantTerm<F>> for ConstantExpr<F, ChallengeTerm>
source§fn from(x: ConstantTerm<F>) -> Self
fn from(x: ConstantTerm<F>) -> Self
Converts to this type from the input type.
source§impl<F, ChallengeTerm> From<ConstantTerm<F>> for ConstantExprInner<F, ChallengeTerm>
impl<F, ChallengeTerm> From<ConstantTerm<F>> for ConstantExprInner<F, ChallengeTerm>
source§fn from(x: ConstantTerm<F>) -> Self
fn from(x: ConstantTerm<F>) -> Self
Converts to this type from the input type.
source§impl<'a, F, Column, ChallengeTerm: AlphaChallengeTerm<'a>> From<ConstantTerm<F>> for Expr<ConstantExpr<F, ChallengeTerm>, Column>
impl<'a, F, Column, ChallengeTerm: AlphaChallengeTerm<'a>> From<ConstantTerm<F>> for Expr<ConstantExpr<F, ChallengeTerm>, Column>
source§fn from(x: ConstantTerm<F>) -> Self
fn from(x: ConstantTerm<F>) -> Self
Converts to this type from the input type.
source§impl<F: Clone> Literal for ConstantTerm<F>
impl<F: Clone> Literal for ConstantTerm<F>
type F = F
fn literal(x: Self::F) -> Self
fn to_literal(self) -> Result<Self::F, Self>
fn to_literal_ref(&self) -> Option<&Self::F>
source§fn as_literal(&self, constants: &Constants<Self::F>) -> Self
fn as_literal(&self, constants: &Constants<Self::F>) -> Self
Obtains the representation of some constants as a literal.
This is useful before converting Kimchi expressions with constants
to folding compatible expressions.
source§impl<F: PartialEq> PartialEq<ConstantTerm<F>> for ConstantTerm<F>
impl<F: PartialEq> PartialEq<ConstantTerm<F>> for ConstantTerm<F>
source§fn eq(&self, other: &ConstantTerm<F>) -> bool
fn eq(&self, other: &ConstantTerm<F>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<F> Serialize for ConstantTerm<F>where
F: Serialize,
impl<F> Serialize for ConstantTerm<F>where F: Serialize,
impl<F: Copy> Copy for ConstantTerm<F>
impl<F: Eq> Eq for ConstantTerm<F>
impl<F> StructuralEq for ConstantTerm<F>
impl<F> StructuralPartialEq for ConstantTerm<F>
Auto Trait Implementations§
impl<F> RefUnwindSafe for ConstantTerm<F>where F: RefUnwindSafe,
impl<F> Send for ConstantTerm<F>where F: Send,
impl<F> Sync for ConstantTerm<F>where F: Sync,
impl<F> Unpin for ConstantTerm<F>where F: Unpin,
impl<F> UnwindSafe for ConstantTerm<F>where F: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more