mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
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>
11 lines
308 B
Rust
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>>>;
|