pub struct EvalClaimSystem<'a, F: Field> {
pub commit_meta: &'a CommitMeta,
pub prefix_descs: Vec<EvalClaimPrefixDesc<F>>,
pub suffix_descs: Vec<EvalClaimSuffixDesc<F>>,
pub sumcheck_claim_descs: Vec<PIOPSumcheckClaimDesc<'a, F>>,
pub eval_claim_to_prefix_desc_index: Vec<usize>,
}
Expand description
A system of relations required to verify multilinear evaluation claims using the batched FRI-Binius protocol.
Fields are public because this is internal to the module.
Fields§
§commit_meta: &'a CommitMeta
§prefix_descs: Vec<EvalClaimPrefixDesc<F>>
§suffix_descs: Vec<EvalClaimSuffixDesc<F>>
§sumcheck_claim_descs: Vec<PIOPSumcheckClaimDesc<'a, F>>
§eval_claim_to_prefix_desc_index: Vec<usize>
Implementations§
Source§impl<'a, F: TowerField> EvalClaimSystem<'a, F>
impl<'a, F: TowerField> EvalClaimSystem<'a, F>
Sourcepub fn new(
commit_meta: &'a CommitMeta,
oracle_to_commit_index: SparseIndex<usize>,
eval_claims: &'a [EvalcheckMultilinearClaim<F>],
) -> Result<Self, Error>
pub fn new( commit_meta: &'a CommitMeta, oracle_to_commit_index: SparseIndex<usize>, eval_claims: &'a [EvalcheckMultilinearClaim<F>], ) -> Result<Self, Error>
Constructs a new system of claim relations.
§Arguments
commit_meta
- metadata about the polynomial commitment.oracle_to_commit_index
- a sparse index mapping oracle IDs to IDs in the commit metadata.eval_claims
- the evaluation claims on committed multilinear polynomials.
pub fn max_claim_kappa(&self) -> usize
Trait Implementations§
Auto Trait Implementations§
impl<'a, F> Freeze for EvalClaimSystem<'a, F>
impl<'a, F> !RefUnwindSafe for EvalClaimSystem<'a, F>
impl<'a, F> Send for EvalClaimSystem<'a, F>
impl<'a, F> Sync for EvalClaimSystem<'a, F>
impl<'a, F> Unpin for EvalClaimSystem<'a, F>
impl<'a, F> !UnwindSafe for EvalClaimSystem<'a, F>
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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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