slatec 0.1.0

Safe Rust interface to selected SLATEC numerical routines
1
2
3
4
5
6
7
8
9
10
11
12
//! Expert nonlinear-system solving.
//!
//! # Status: Implemented
//!
//! Enable `nonlinear-expert`.

#[cfg(feature = "nonlinear-expert")]
pub use crate::nonlinear::{
    ExpertNonlinearOptions, ExpertNonlinearResult, JacobianIndexError, JacobianMut,
    JacobianStructure, NonlinearError, VariableScaling, solve_system_expert,
    solve_system_expert_f32, solve_system_with_jacobian, solve_system_with_jacobian_f32,
};