hydro_lang/sim/mod.rs
1//! Deterministic simulation testing support for Hydro programs.
2//!
3//! See [`crate::compile::builder::FlowBuilder::sim`] and [`flow::SimFlow`] for more details.
4
5#[cfg(stageleft_runtime)]
6mod builder;
7
8#[cfg(stageleft_runtime)]
9pub mod compiled;
10
11#[cfg(stageleft_runtime)]
12pub(crate) mod graph;
13
14#[cfg(stageleft_runtime)]
15pub mod flow;
16
17#[cfg(stageleft_runtime)]
18#[doc(hidden)]
19pub mod runtime;
20
21#[cfg(test)]
22mod tests;