legendre 0.1.0

Block-structured, deterministic, scheduler-driven PDE simulation framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! Numerical schemes as policies.
//!
//! Operator tags, the `Discretizes` policy trait, the `Stencil` execution
//! abstraction, and concrete scheme families (central finite differences
//! and the finite-volume family).

pub mod finite_difference;
pub mod finite_volume;
pub mod operators;
pub mod stencil;