Files
powdr/executor/src/lib.rs
Gastón Zanitti 91d41df9a0 Allow blocks to be empty (#1435)
This PR builds on top of #1393.
It mainly modifies the grammar by changing the way SelectedExpressions
are declared, to allow blocks to be empty.

---------

Co-authored-by: chriseth <chris@ethereum.org>
2024-07-01 15:05:32 +00:00

11 lines
308 B
Rust

//! Tooling used for execution of compiled programs
#![deny(clippy::print_stdout)]
use powdr_ast::analyzed::{AlgebraicExpression, Identity as IdentityStruct, SelectedExpressions};
pub mod constant_evaluator;
pub mod witgen;
type Identity<T> = IdentityStruct<SelectedExpressions<AlgebraicExpression<T>>>;