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
56pub mod monte_carlo;
7pub mod state;
89pub use monte_carlo::*;
10pub use state::*;