mod simulation;
pub mod algorithm;
pub mod lattice;
pub use simulation::Simulation;
pub const CRITICAL_TEMPERATURE: f64 = 2.269_185_314_213_022;
#[cfg(test)]
mod tests {
#[test]
fn critical_temperature_constant() {
assert_eq!(super::CRITICAL_TEMPERATURE, 2.0 / 2_f64.sqrt().ln_1p());
}
}