pub struct RangeCheckerAir {
pub bus: RangeCheckBus,
}
Fields§
§bus: RangeCheckBus
Implementations§
Source§impl RangeCheckerAir
impl RangeCheckerAir
Sourcepub fn new(bus: RangeCheckBus) -> Self
pub fn new(bus: RangeCheckBus) -> Self
Constructs a new RangeCheckerAir
.
Trait Implementations§
Source§impl<AB: InteractionBuilder + PairBuilder> Air<AB> for RangeCheckerAir
impl<AB: InteractionBuilder + PairBuilder> Air<AB> for RangeCheckerAir
Source§impl<F: Field> BaseAir<F> for RangeCheckerAir
impl<F: Field> BaseAir<F> for RangeCheckerAir
fn preprocessed_trace(&self) -> Option<RowMajorMatrix<F>>
Source§impl<F: Field> BaseAirWithPublicValues<F> for RangeCheckerAir
impl<F: Field> BaseAirWithPublicValues<F> for RangeCheckerAir
fn num_public_values(&self) -> usize
Source§impl Clone for RangeCheckerAir
impl Clone for RangeCheckerAir
Source§fn clone(&self) -> RangeCheckerAir
fn clone(&self) -> RangeCheckerAir
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 RangeCheckerAir
impl Debug for RangeCheckerAir
Source§impl<F: Field> PartitionedBaseAir<F> for RangeCheckerAir
impl<F: Field> PartitionedBaseAir<F> for RangeCheckerAir
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 RangeCheckerAir
Auto Trait Implementations§
impl Freeze for RangeCheckerAir
impl RefUnwindSafe for RangeCheckerAir
impl Send for RangeCheckerAir
impl Sync for RangeCheckerAir
impl Unpin for RangeCheckerAir
impl UnwindSafe for RangeCheckerAir
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