This crate provides algorithms over a generic type T
to find roots
of functions T
→ T
. It is readily usable for T
being f64
and
f32
. Activating the feature rug
, one can also use it with
[rug::Float
][] and [rug::Rational
][].
```rust use root1d::toms748;
fn main() -> Result<(), Box
For more information, consult the documentation of the latest release.