slatec 0.1.0

Safe Rust interface to selected SLATEC numerical routines
1
2
3
4
5
6
7
8
9
10
//! Owned single-precision polynomial roots.
//!
//! # Status: Implemented
//!
//! Enable `roots-polynomial`. The canonical safe API is
//! `crate::roots::polynomial`; this module is its mathematical-organization
//! re-export.

#[cfg(feature = "roots-polynomial")]
pub use crate::roots::polynomial::*;