Enum arrabbiata::challenge::ChallengeTerm
source · pub enum ChallengeTerm {
ConstraintCombiner,
Beta,
Gamma,
ConstraintHomogeniser,
RelationCombiner,
}
Variants§
ConstraintCombiner
Used to aggregate the constraints describing the relation. It is used to
enforce all constraints are satisfied at the same time.
Often noted α
.
Beta
Both challenges used in the permutation argument
Gamma
ConstraintHomogeniser
Used to homogenize the constraints and allow the protocol to fold two
instances of the same relation into a new one.
Often noted u
in the paper mentioning “folding protocols”.
RelationCombiner
Used by the accumulation protocol (folding) to perform a random linear
transformation of the witnesses and the public values.
Often noted r
in the paper mentioning “folding protocols”.
Trait Implementations§
source§impl<'a> AlphaChallengeTerm<'a> for ChallengeTerm
impl<'a> AlphaChallengeTerm<'a> for ChallengeTerm
source§impl Clone for ChallengeTerm
impl Clone for ChallengeTerm
source§fn clone(&self) -> ChallengeTerm
fn clone(&self) -> ChallengeTerm
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 Debug for ChallengeTerm
impl Debug for ChallengeTerm
source§impl<'de> Deserialize<'de> for ChallengeTerm
impl<'de> Deserialize<'de> for ChallengeTerm
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 Display for ChallengeTerm
impl Display for ChallengeTerm
source§impl<F> Index<ChallengeTerm> for Challenges<F>
impl<F> Index<ChallengeTerm> for Challenges<F>
source§impl<F> IndexMut<ChallengeTerm> for Challenges<F>
impl<F> IndexMut<ChallengeTerm> for Challenges<F>
source§impl PartialEq<ChallengeTerm> for ChallengeTerm
impl PartialEq<ChallengeTerm> for ChallengeTerm
source§fn eq(&self, other: &ChallengeTerm) -> bool
fn eq(&self, other: &ChallengeTerm) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ChallengeTerm
impl Serialize for ChallengeTerm
impl Copy for ChallengeTerm
impl Eq for ChallengeTerm
impl StructuralEq for ChallengeTerm
impl StructuralPartialEq for ChallengeTerm
Auto Trait Implementations§
impl RefUnwindSafe for ChallengeTerm
impl Send for ChallengeTerm
impl Sync for ChallengeTerm
impl Unpin for ChallengeTerm
impl UnwindSafe for ChallengeTerm
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