//! The input modeling module provides a foundation for configurable model
//! behaviors, whether that is deterministic or stochastic. The module
//! includes a set of random variable distributions for use in atomic models,
//! a system around "thinning" for non-stationary model behaviors, and a
//! structure around random number generation.
pub use Boolean as BooleanRandomVariable;
pub use Continuous as ContinuousRandomVariable;
pub use Discrete as DiscreteRandomVariable;
pub use Index as IndexRandomVariable;
pub use Thinning;
pub use ;