sciforge-hub 0.0.4

Central hub orchestrating Sciforge subsystems (api, engine, tools).
Documentation
//! Mathematics domain re-exports.
//!
//! Flat namespace over the top-level `maths` crate modules: complex
//! numbers, FFT, graph theory, integration, interpolation, linear
//! algebra, ODEs, PDEs, probability, signal processing, and statistics.

pub use sciforge_lib::maths::complex;
pub use sciforge_lib::maths::fft;
pub use sciforge_lib::maths::graph;
pub use sciforge_lib::maths::integration;
pub use sciforge_lib::maths::interpolation;
pub use sciforge_lib::maths::linalg;
pub use sciforge_lib::maths::non_euclidean;
pub use sciforge_lib::maths::ode;
pub use sciforge_lib::maths::optimization;
pub use sciforge_lib::maths::pde;
pub use sciforge_lib::maths::polynomial;
pub use sciforge_lib::maths::probability;
pub use sciforge_lib::maths::signal;
pub use sciforge_lib::maths::sparse;
pub use sciforge_lib::maths::statistics;
pub use sciforge_lib::maths::tensor;
pub use sciforge_lib::maths::vector;