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