This crate contains the intermediate representation for AirScript, AirIR.
The purpose of the AirIR is to provide a simple and accurate representation of an AIR that allows for optimization and translation to constraint evaluator code in a variety of target languages.
Generate an AirIR from a MIR (the Middle Intermediate Representation for AirScript).
Example usage:
// parse the source string to a Result containing the AST or an Error
let ast = parse(source.as_str()).expect("Parsing failed");
// Compile AST into AIR
let air = compile(&diagnostics, ast).expect("compilation failed");Although generation of an AirIR uses a symbol table while processing the source AST, the internal representation only consists of the following:
- Name of the AIR definition represented by the
AirIR. - Segment Widths, represented by a vector that contains the width of each trace segment (currently
mainandauxiliary). - Constants, represented by a vector that maps an identifier to a constant value.
- Public inputs, represented by a vector that maps an identifier to a size for each public input that was declared. (Currently, public inputs can only be declared as fixed-size arrays.)
- Periodic columns, represented by an ordered vector that contains each periodic column's repeating pattern (as a vector).
- Constraints, represented by the combination of:
- a directed acyclic graph (DAG) without duplicate nodes.
- a vector of
ConstraintRootfor each trace segment (e.g. main or auxiliary), whereConstraintRootcontains the node index in the graph where each of the constraint starts and the constraint domain which specifies the row(s) accessed by each of the constraints. - contains both boundary and integrity constraints.