slatec 0.1.0

Safe Rust interface to selected SLATEC numerical routines
1
2
3
4
5
6
7
8
9
10
11
//! Compile with `cargo check -p slatec --example raw_all_features_compile --features raw-all-compile`.
//!
//! `slatec-sys/all` enables declarations for every public mathematical family.
//! It intentionally selects no source-build, system, or external provider.

fn main() {
    let _ = slatec_sys::blas::level1::daxpy;
    let _ = slatec_sys::special::gamma::dgamma;
    let _ = slatec_sys::quadrature::dqag;
    let _ = slatec_sys::pde::fishpack::pois3d;
}