pub struct SubAirBuilder<'a, AB: AirBuilder, SubAir: BaseAir<T>, T> { /* private fields */ }
Expand description
A builder used to eval a sub-air. This will handle enforcing constraints for a subset of a trace matrix. E.g. if a particular air needs to be enforced for a subset of the columns of the trace, then the SubAirBuilder can be used.
Implementations§
Source§impl<'a, AB: AirBuilder, SubAir: BaseAir<T>, T> SubAirBuilder<'a, AB, SubAir, T>
impl<'a, AB: AirBuilder, SubAir: BaseAir<T>, T> SubAirBuilder<'a, AB, SubAir, T>
pub fn new(inner: &'a mut AB, column_range: Range<usize>) -> Self
Trait Implementations§
Source§impl<AB: AirBuilder, SubAir: BaseAir<F>, F> AirBuilder for SubAirBuilder<'_, AB, SubAir, F>
impl<AB: AirBuilder, SubAir: BaseAir<F>, F> AirBuilder for SubAirBuilder<'_, AB, SubAir, F>
Implement AirBuilder
for SubAirBuilder
.
type F = <AB as AirBuilder>::F
type Expr = <AB as AirBuilder>::Expr
type Var = <AB as AirBuilder>::Var
type M = SubMatrixRowSlices<<AB as AirBuilder>::M, <SubAirBuilder<'_, AB, SubAir, F> as AirBuilder>::Var>
fn main(&self) -> Self::M
fn is_first_row(&self) -> Self::Expr
fn is_last_row(&self) -> Self::Expr
fn is_transition_window(&self, size: usize) -> Self::Expr
fn assert_zero<I: Into<Self::Expr>>(&mut self, x: I)
fn is_transition(&self) -> Self::Expr
§fn when<I>(&mut self, condition: I) -> FilteredAirBuilder<'_, Self>where
I: Into<Self::Expr>,
fn when<I>(&mut self, condition: I) -> FilteredAirBuilder<'_, Self>where
I: Into<Self::Expr>,
Returns a sub-builder whose constraints are enforced only when
condition
is nonzero.§fn when_ne<I1, I2>(&mut self, x: I1, y: I2) -> FilteredAirBuilder<'_, Self>
fn when_ne<I1, I2>(&mut self, x: I1, y: I2) -> FilteredAirBuilder<'_, Self>
Returns a sub-builder whose constraints are enforced only when
x != y
.§fn when_first_row(&mut self) -> FilteredAirBuilder<'_, Self>
fn when_first_row(&mut self) -> FilteredAirBuilder<'_, Self>
Returns a sub-builder whose constraints are enforced only on the first row.
§fn when_last_row(&mut self) -> FilteredAirBuilder<'_, Self>
fn when_last_row(&mut self) -> FilteredAirBuilder<'_, Self>
Returns a sub-builder whose constraints are enforced only on the last row.
§fn when_transition(&mut self) -> FilteredAirBuilder<'_, Self>
fn when_transition(&mut self) -> FilteredAirBuilder<'_, Self>
Returns a sub-builder whose constraints are enforced on all rows except the last.
§fn when_transition_window(
&mut self,
size: usize,
) -> FilteredAirBuilder<'_, Self>
fn when_transition_window( &mut self, size: usize, ) -> FilteredAirBuilder<'_, Self>
Returns a sub-builder whose constraints are enforced on all rows except the last
size - 1
.fn assert_one<I>(&mut self, x: I)where
I: Into<Self::Expr>,
fn assert_eq<I1, I2>(&mut self, x: I1, y: I2)
§fn assert_bool<I>(&mut self, x: I)where
I: Into<Self::Expr>,
fn assert_bool<I>(&mut self, x: I)where
I: Into<Self::Expr>,
Assert that
x
is a boolean, i.e. either 0 or 1.Auto Trait Implementations§
impl<'a, AB, SubAir, T> Freeze for SubAirBuilder<'a, AB, SubAir, T>
impl<'a, AB, SubAir, T> RefUnwindSafe for SubAirBuilder<'a, AB, SubAir, T>
impl<'a, AB, SubAir, T> Send for SubAirBuilder<'a, AB, SubAir, T>
impl<'a, AB, SubAir, T> Sync for SubAirBuilder<'a, AB, SubAir, T>
impl<'a, AB, SubAir, T> Unpin for SubAirBuilder<'a, AB, SubAir, T>
impl<'a, AB, SubAir, T> !UnwindSafe for SubAirBuilder<'a, AB, SubAir, T>
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