#[repr(usize)]pub enum CascadeAuxColumn {
HashTableServerLogDerivative = 0,
LookupTableClientLogDerivative = 1,
}
Variants§
HashTableServerLogDerivative = 0
The (running sum of the) logarithmic derivative for the Lookup Argument with the Hash Table.
In every row, the sum accumulates LookupMultiplicity / (X - Combo)
where X
is a
verifier-supplied challenge and Combo
is the weighted sum of
2^8·LookInHi + LookInLo
, and2^8·LookOutHi + LookOutLo
with weights supplied by the verifier.
LookupTableClientLogDerivative = 1
The (running sum of the) logarithmic derivative for the Lookup Argument with the Lookup Table. In every row, accumulates the two summands
1 / combo_hi
wherecombo_hi
is the verifier-weighted combination ofLookInHi
andLookOutHi
, and1 / combo_lo
wherecombo_lo
is the verifier-weighted combination ofLookInLo
andLookOutLo
.
Trait Implementations§
Source§impl Clone for CascadeAuxColumn
impl Clone for CascadeAuxColumn
Source§fn clone(&self) -> CascadeAuxColumn
fn clone(&self) -> CascadeAuxColumn
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 CascadeAuxColumn
impl Debug for CascadeAuxColumn
Source§impl Display for CascadeAuxColumn
impl Display for CascadeAuxColumn
Source§impl Hash for CascadeAuxColumn
impl Hash for CascadeAuxColumn
Source§impl IntoEnumIterator for CascadeAuxColumn
impl IntoEnumIterator for CascadeAuxColumn
type Iterator = CascadeAuxColumnIter
fn iter() -> CascadeAuxColumnIter ⓘ
Source§impl MasterAuxColumn for CascadeAuxColumn
impl MasterAuxColumn for CascadeAuxColumn
Source§impl PartialEq for CascadeAuxColumn
impl PartialEq for CascadeAuxColumn
impl Copy for CascadeAuxColumn
impl Eq for CascadeAuxColumn
impl StructuralPartialEq for CascadeAuxColumn
Auto Trait Implementations§
impl Freeze for CascadeAuxColumn
impl RefUnwindSafe for CascadeAuxColumn
impl Send for CascadeAuxColumn
impl Sync for CascadeAuxColumn
impl Unpin for CascadeAuxColumn
impl UnwindSafe for CascadeAuxColumn
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more