pub struct BatchedDecompLogupProof<F> {
pub aggregated_multiplicities: Vec<Vec<F>>,
pub chunk_inverse_witnesses: Vec<Vec<Vec<F>>>,
pub inverse_table: Vec<F>,
}Expand description
Proof for one lookup group (columns sharing the same table type).
Does not contain a sumcheck proof — the sumcheck is shared via the protocol-level multi-degree sumcheck. This struct carries only the auxiliary vectors the verifier needs to reconstruct evaluations at the shared point.
Chunk vectors are not included — the verifier reconstructs them
from the inverse witnesses: c_k[j] = β − 1/u_k[j]. Soundness
follows from the PCS commitment binding the parent column.
Fields§
§aggregated_multiplicities: Vec<Vec<F>>Per-witness aggregated multiplicity vectors:
aggregated_multiplicities[l][j] = Σ_k m_k^(l)[j].
chunk_inverse_witnesses: Vec<Vec<Vec<F>>>Per-witness per-chunk inverse witness vectors:
chunk_inverse_witnesses[l][k][i] = 1 / (β − chunk[l][k][i]).
inverse_table: Vec<F>Shared inverse table vector: inverse_table[j] = 1 / (β − T[j]).
Trait Implementations§
Source§impl<F: Clone> Clone for BatchedDecompLogupProof<F>
impl<F: Clone> Clone for BatchedDecompLogupProof<F>
Source§fn clone(&self) -> BatchedDecompLogupProof<F>
fn clone(&self) -> BatchedDecompLogupProof<F>
Returns a duplicate 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 BatchedDecompLogupProof<F>
impl<F: Debug> Debug for BatchedDecompLogupProof<F>
Source§impl<F: PartialEq> PartialEq for BatchedDecompLogupProof<F>
impl<F: PartialEq> PartialEq for BatchedDecompLogupProof<F>
impl<F: Eq> Eq for BatchedDecompLogupProof<F>
impl<F> StructuralPartialEq for BatchedDecompLogupProof<F>
Auto Trait Implementations§
impl<F> Freeze for BatchedDecompLogupProof<F>
impl<F> RefUnwindSafe for BatchedDecompLogupProof<F>where
F: RefUnwindSafe,
impl<F> Send for BatchedDecompLogupProof<F>where
F: Send,
impl<F> Sync for BatchedDecompLogupProof<F>where
F: Sync,
impl<F> Unpin for BatchedDecompLogupProof<F>where
F: Unpin,
impl<F> UnsafeUnpin for BatchedDecompLogupProof<F>
impl<F> UnwindSafe for BatchedDecompLogupProof<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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