p3-air 0.6.1

Defines the Algebraic Intermediate Representation (AIR) interface and supporting utilities for STARK provers.
Documentation
//! APIs for AIRs, and generalizations like PAIRs.

#![no_std]

extern crate alloc;

mod air;
mod builder;
mod check_constraints;
mod filtered;
mod named;
pub mod symbolic;
pub mod utils;
mod virtual_column;
mod window;

pub use air::*;
pub use builder::*;
pub use check_constraints::*;
pub use filtered::*;
pub use named::*;
pub use symbolic::*;
pub use virtual_column::*;
pub use window::*;