slatec 0.1.0

Safe Rust interface to selected SLATEC numerical routines
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Link-retention probe for the narrow nonlinear easy-driver family.

use slatec::nonlinear::{NonlinearOptions, solve_system};

fn main() {
    let _ = solve_system(
        &[1.0],
        |x, residual| {
            residual[0] = x[0] * x[0] - 2.0;
        },
        NonlinearOptions::default(),
    );
}