GuillaumeGomez / rust-GSL

A GSL (the GNU Scientific Library) binding for Rust
189 stars 48 forks source link

Adding minimization with derivatives to multimin #154

Closed hugohp closed 6 months ago

hugohp commented 6 months ago

Notice I force user to provide three functions: f, df and fdf.

We could instead have allowed fdf to be optional and internal wrapping mechanism would call user-provided f and df when GSL asks for fdf. But I left it simple for now. We can always extend?

GuillaumeGomez commented 6 months ago

Thanks!

hugohp commented 6 months ago

Excellent. Thank you.