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>
Implement AirBuilder for SubAirBuilder.
impl<AB: AirBuilder, SubAir: BaseAir<F>, F> AirBuilder for SubAirBuilder<'_, AB, SubAir, F>
Implement AirBuilder for SubAirBuilder.
Source§type Expr = <AB as AirBuilder>::Expr
type Expr = <AB as AirBuilder>::Expr
Serves as the output type for an AIR constraint evaluation.
Source§type Var = <AB as AirBuilder>::Var
type Var = <AB as AirBuilder>::Var
The type of the variable appearing in the trace matrix. Read more
Source§type M = SubMatrixRowSlices<<AB as AirBuilder>::M, <SubAirBuilder<'_, AB, SubAir, F> as AirBuilder>::Var>
type M = SubMatrixRowSlices<<AB as AirBuilder>::M, <SubAirBuilder<'_, AB, SubAir, F> as AirBuilder>::Var>
Matrix type holding variables.
Source§fn is_first_row(&self) -> Self::Expr
fn is_first_row(&self) -> Self::Expr
Expression evaluating to 1 on the first row, 0 elsewhere.
Source§fn is_last_row(&self) -> Self::Expr
fn is_last_row(&self) -> Self::Expr
Expression evaluating to 1 on the last row, 0 elsewhere.
Source§fn is_transition_window(&self, size: usize) -> Self::Expr
fn is_transition_window(&self, size: usize) -> Self::Expr
Expression evaluating to 1 on rows except the last
size - 1 rows, 0 otherwise.Source§fn assert_zero<I: Into<Self::Expr>>(&mut self, x: I)
fn assert_zero<I: Into<Self::Expr>>(&mut self, x: I)
Assert that the given element is zero. Read more
Source§fn is_transition(&self) -> Self::Expr
fn is_transition(&self) -> Self::Expr
Expression evaluating to 1 on all transition rows (not last row), 0 on last row.
Source§fn when<I>(&mut self, condition: I) -> FilteredAirBuilder<'_, Self>
fn when<I>(&mut self, condition: I) -> FilteredAirBuilder<'_, Self>
Returns a sub-builder whose constraints are enforced only when
condition is nonzero.Source§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.Source§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.
Source§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.
Source§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.
Source§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.Source§fn assert_zeros<const N: usize, I>(&mut self, array: [I; N])
fn assert_zeros<const N: usize, I>(&mut self, array: [I; N])
Assert that every element of a given array is 0. Read more
Source§fn assert_bools<const N: usize, I>(&mut self, array: [I; N])
fn assert_bools<const N: usize, I>(&mut self, array: [I; N])
Assert that a given array consists of only boolean values.
Source§fn assert_one<I>(&mut self, x: I)
fn assert_one<I>(&mut self, x: I)
Assert that
x element is equal to 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
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