symplex 0.22.2

Exact symbolic mathematics for Rust: calculus, summation, solving, linear algebra, transforms, compile-time dimensional analysis, and Rust/C code generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Feature tests written alongside the 0.18 APIs (`tests/v18/*.rs`, one
//! module per track). Run one module with e.g.
//! `cargo test --test v18 v18_layout::`.

#[path = "v18/v18_cox.rs"]
mod v18_cox;
#[path = "v18/v18_layout.rs"]
mod v18_layout;
#[path = "v18/v18_loose_ends.rs"]
mod v18_loose_ends;
#[path = "v18/v18_poly_fast.rs"]
mod v18_poly_fast;
#[path = "v18/v18_roots.rs"]
mod v18_roots;
#[path = "v18/v18_samplers.rs"]
mod v18_samplers;