mod datasets;
pub use datasets::*;
mod models;
pub use models::*;
pub trait Random {
type Output;
fn random(&mut self) -> Self::Output;
}
#[allow(clippy::module_name_repetitions)]
pub trait ParRandom {
type Output;
fn par_random(&mut self) -> Self::Output;
}