lattice_qcd_rs/simulation/
mod.rs

1//! Simulation module. Contains Monte Carlo algorithms and simulation states.
2//!
3//! See submodule documentation [`monte_carlo`] and [`state`] for more details.
4// TODO more doc
5
6pub mod monte_carlo;
7pub mod state;
8
9pub use monte_carlo::*;
10pub use state::*;