pub struct QuotientVkData<'a, SC: StarkGenericConfig> {
pub quotient_degree: usize,
pub rap_phase_seq_kind: RapPhaseSeqKind,
pub interaction_chunk_size: usize,
pub symbolic_constraints: &'a SymbolicConstraints<Val<SC>>,
}
Expand description
All necessary data from VK to compute ProverQuotientData
Fields§
§quotient_degree: usize
§rap_phase_seq_kind: RapPhaseSeqKind
§interaction_chunk_size: usize
§symbolic_constraints: &'a SymbolicConstraints<Val<SC>>
Symbolic constraints of the AIR in all challenge phases. This is a serialization of the constraints in the AIR.
Auto Trait Implementations§
impl<'a, SC> Freeze for QuotientVkData<'a, SC>
impl<'a, SC> RefUnwindSafe for QuotientVkData<'a, SC>where
<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val: RefUnwindSafe,
impl<'a, SC> Send for QuotientVkData<'a, SC>
impl<'a, SC> Sync for QuotientVkData<'a, SC>
impl<'a, SC> Unpin for QuotientVkData<'a, SC>
impl<'a, SC> UnwindSafe for QuotientVkData<'a, SC>where
<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val: RefUnwindSafe,
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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