pub trait BaseAir<F>: Sync {
// Required method
fn width(&self) -> usize;
// Provided method
fn preprocessed_trace(&self) -> Option<RowMajorMatrix<F>> { ... }
}Expand description
The underlying structure of an AIR.
Required Methods§
Provided Methods§
Sourcefn preprocessed_trace(&self) -> Option<RowMajorMatrix<F>>
fn preprocessed_trace(&self) -> Option<RowMajorMatrix<F>>
Return an optional preprocessed trace matrix to be included in the prover’s trace.