SummationByParts/sbp/src/lib.rs

12 lines
197 B
Rust
Raw Normal View History

#[cfg(feature = "f32")]
pub type Float = f32;
#[cfg(not(feature = "f32"))]
pub type Float = f64;
2020-01-30 17:28:22 +00:00
pub mod euler;
pub mod grid;
pub mod integrate;
pub mod maxwell;
pub mod operators;
2020-02-22 16:45:28 +00:00
pub mod utils;