#![doc = include_str!("../README.md")]
#[cfg(feature = "constitutive")]
pub mod constitutive;
#[cfg(feature = "fem")]
#[path = "domain/fem/mod.rs"]
pub mod fem;
#[cfg(feature = "geometry")]
pub mod geometry;
#[cfg(feature = "io")]
pub mod io;
#[cfg(feature = "math")]
pub mod math;
#[cfg(feature = "mechanics")]
pub mod mechanics;
#[cfg(feature = "physics")]
pub mod physics;
#[cfg(feature = "vem")]
#[path = "domain/vem/mod.rs"]
pub mod vem;
pub const ABS_TOL: f64 = 1e-12;
pub const REL_TOL: f64 = 1e-12;
#[cfg(test)]
pub const EPSILON: f64 = 1e-6;