pub struct StarkLogUpPhase<F, Challenge, Challenger> { /* private fields */ }
Implementations§
Source§impl<F, Challenge, Challenger> StarkLogUpPhase<F, Challenge, Challenger>
impl<F, Challenge, Challenger> StarkLogUpPhase<F, Challenge, Challenger>
Source§impl<F, Challenge, Challenger> StarkLogUpPhase<F, Challenge, Challenger>where
F: Field,
Challenge: ExtensionField<F>,
Challenger: FieldChallenger<F>,
impl<F, Challenge, Challenger> StarkLogUpPhase<F, Challenge, Challenger>where
F: Field,
Challenge: ExtensionField<F>,
Challenger: FieldChallenger<F>,
Sourcepub fn generate_after_challenge_trace(
all_interactions: &[Interaction<SymbolicExpression<F>>],
trace_view: &PairTraceView<'_, F>,
permutation_randomness: &[Challenge; 2],
interaction_chunk_size: usize,
) -> Option<RowMajorMatrix<Challenge>>where
F: Field,
Challenge: ExtensionField<F>,
pub fn generate_after_challenge_trace(
all_interactions: &[Interaction<SymbolicExpression<F>>],
trace_view: &PairTraceView<'_, F>,
permutation_randomness: &[Challenge; 2],
interaction_chunk_size: usize,
) -> Option<RowMajorMatrix<Challenge>>where
F: Field,
Challenge: ExtensionField<F>,
Generate the permutation trace for a chip given the main trace. The permutation randomness is only available after the main trace from all chips involved in interactions have been committed.
partitioned_main
is the main trace, partitioned into several matrices of the same height
Returns the permutation trace as a matrix of extension field elements.
§Panics
- If
partitioned_main
is empty.
Trait Implementations§
Source§impl<F: Default, Challenge: Default, Challenger: Default> Default for StarkLogUpPhase<F, Challenge, Challenger>
impl<F: Default, Challenge: Default, Challenger: Default> Default for StarkLogUpPhase<F, Challenge, Challenger>
Source§fn default() -> StarkLogUpPhase<F, Challenge, Challenger>
fn default() -> StarkLogUpPhase<F, Challenge, Challenger>
Returns the “default value” for a type. Read more
Source§impl<F, Challenge, Challenger> RapPhaseSeq<F, Challenge, Challenger> for StarkLogUpPhase<F, Challenge, Challenger>where
F: Field,
Challenge: ExtensionField<F>,
Challenger: FieldChallenger<F>,
impl<F, Challenge, Challenger> RapPhaseSeq<F, Challenge, Challenger> for StarkLogUpPhase<F, Challenge, Challenger>where
F: Field,
Challenge: ExtensionField<F>,
Challenger: FieldChallenger<F>,
const ID: RapPhaseSeqKind = RapPhaseSeqKind::StarkLogUp
type PartialProof = ()
type ProvingKey = StarkLogUpProvingKey
type Error = StarkLogUpError
Source§fn generate_pk_per_air(
&self,
symbolic_constraints_per_air: Vec<SymbolicConstraints<F>>,
) -> Vec<Self::ProvingKey>
fn generate_pk_per_air( &self, symbolic_constraints_per_air: Vec<SymbolicConstraints<F>>, ) -> Vec<Self::ProvingKey>
The protocol parameters for the challenge phases may depend on the AIR constraints.
Source§fn partially_prove(
&self,
challenger: &mut Challenger,
rap_pk_per_air: &[Self::ProvingKey],
constraints_per_air: &[&SymbolicConstraints<F>],
trace_view_per_air: &[PairTraceView<'_, F>],
) -> Option<(Self::PartialProof, RapPhaseProverData<Challenge>)>
fn partially_prove( &self, challenger: &mut Challenger, rap_pk_per_air: &[Self::ProvingKey], constraints_per_air: &[&SymbolicConstraints<F>], trace_view_per_air: &[PairTraceView<'_, F>], ) -> Option<(Self::PartialProof, RapPhaseProverData<Challenge>)>
Partially prove the challenge phases, Read more
Source§fn partially_verify<Commitment: Clone>(
&self,
challenger: &mut Challenger,
_partial_proof: Option<&Self::PartialProof>,
exposed_values_per_phase_per_air: &[Vec<Vec<Challenge>>],
commitment_per_phase: &[Commitment],
_permutation_opened_values: &[Vec<Vec<Vec<Challenge>>>],
) -> (RapPhaseVerifierData<Challenge>, Result<(), Self::Error>)where
Challenger: CanObserve<Commitment>,
fn partially_verify<Commitment: Clone>(
&self,
challenger: &mut Challenger,
_partial_proof: Option<&Self::PartialProof>,
exposed_values_per_phase_per_air: &[Vec<Vec<Challenge>>],
commitment_per_phase: &[Commitment],
_permutation_opened_values: &[Vec<Vec<Vec<Challenge>>>],
) -> (RapPhaseVerifierData<Challenge>, Result<(), Self::Error>)where
Challenger: CanObserve<Commitment>,
Partially verifies the challenge phases. Read more
Auto Trait Implementations§
impl<F, Challenge, Challenger> Freeze for StarkLogUpPhase<F, Challenge, Challenger>
impl<F, Challenge, Challenger> RefUnwindSafe for StarkLogUpPhase<F, Challenge, Challenger>
impl<F, Challenge, Challenger> Send for StarkLogUpPhase<F, Challenge, Challenger>
impl<F, Challenge, Challenger> Sync for StarkLogUpPhase<F, Challenge, Challenger>
impl<F, Challenge, Challenger> Unpin for StarkLogUpPhase<F, Challenge, Challenger>
impl<F, Challenge, Challenger> UnwindSafe for StarkLogUpPhase<F, Challenge, Challenger>
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