pub struct VariableRangeCheckerAir {
pub bus: VariableRangeCheckerBus,
}
Fields§
§bus: VariableRangeCheckerBus
Implementations§
Source§impl VariableRangeCheckerAir
impl VariableRangeCheckerAir
Sourcepub fn new(bus: VariableRangeCheckerBus) -> Self
pub fn new(bus: VariableRangeCheckerBus) -> Self
Constructs a new VariableRangeCheckerAir
.
Source§impl VariableRangeCheckerAir
impl VariableRangeCheckerAir
pub fn range_max_bits(&self) -> usize
Trait Implementations§
Source§impl<AB: InteractionBuilder + PairBuilder> Air<AB> for VariableRangeCheckerAir
impl<AB: InteractionBuilder + PairBuilder> Air<AB> for VariableRangeCheckerAir
Source§impl<F: Field> BaseAir<F> for VariableRangeCheckerAir
impl<F: Field> BaseAir<F> for VariableRangeCheckerAir
fn preprocessed_trace(&self) -> Option<RowMajorMatrix<F>>
Source§impl<F: Field> BaseAirWithPublicValues<F> for VariableRangeCheckerAir
impl<F: Field> BaseAirWithPublicValues<F> for VariableRangeCheckerAir
fn num_public_values(&self) -> usize
Source§impl Clone for VariableRangeCheckerAir
impl Clone for VariableRangeCheckerAir
Source§fn clone(&self) -> VariableRangeCheckerAir
fn clone(&self) -> VariableRangeCheckerAir
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 VariableRangeCheckerAir
impl Debug for VariableRangeCheckerAir
Source§impl<F: Field> PartitionedBaseAir<F> for VariableRangeCheckerAir
impl<F: Field> PartitionedBaseAir<F> for VariableRangeCheckerAir
Source§fn cached_main_widths(&self) -> Vec<usize>
fn cached_main_widths(&self) -> Vec<usize>
By default, an AIR has no cached main trace.
Source§fn common_main_width(&self) -> usize
fn common_main_width(&self) -> usize
By default, an AIR has only one private main trace.
impl Copy for VariableRangeCheckerAir
Auto Trait Implementations§
impl Freeze for VariableRangeCheckerAir
impl RefUnwindSafe for VariableRangeCheckerAir
impl Send for VariableRangeCheckerAir
impl Sync for VariableRangeCheckerAir
impl Unpin for VariableRangeCheckerAir
impl UnwindSafe for VariableRangeCheckerAir
Blanket Implementations§
Source§impl<SC, T> AnyRap<SC> for Twhere
SC: StarkGenericConfig,
T: Rap<SymbolicRapBuilder<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val>> + for<'a> Rap<ProverConstraintFolder<'a, SC>> + for<'a> Rap<DebugConstraintBuilder<'a, SC>> + BaseAirWithPublicValues<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val> + PartitionedBaseAir<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val> + Send + Sync + 'static,
impl<SC, T> AnyRap<SC> for Twhere
SC: StarkGenericConfig,
T: Rap<SymbolicRapBuilder<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val>> + for<'a> Rap<ProverConstraintFolder<'a, SC>> + for<'a> Rap<DebugConstraintBuilder<'a, SC>> + BaseAirWithPublicValues<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val> + PartitionedBaseAir<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val> + Send + Sync + 'static,
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> 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