GuillaumeGomez / rust-GSL

A GSL (the GNU Scientific Library) binding for Rust
190 stars 46 forks source link

request: Multidimensional Minimization #144

Closed hugohp closed 5 months ago

hugohp commented 6 months ago

https://www.gnu.org/software/gsl/doc/html/multimin.html Namelly Nelder and Mead

Any plans to introduce bindings to Multidimensional Minimization?

GuillaumeGomez commented 6 months ago

A bit busy with a lot of different things currently, so not right away. But don't hesitate to send a PR if you want it sooner.

hugohp commented 5 months ago

I have a branch where I added "Multidimensional Minimizer" https://www.gnu.org/software/gsl/doc/html/multimin.html. For now its only "functions without derivatives" I think I need permission to raise a PR. Can you give me authorization please?

GuillaumeGomez commented 5 months ago

Unless I missed something, anyone can open a PR to this repository?

hugohp commented 5 months ago

When attempting to create a PR, it asks me for a branch to compare against master but GH does not allow me to create a branch in this repo, nor can I "git push --set-upstream origin multimin" Do I have to create a PR from a fork (instead of a branch)?

GuillaumeGomez commented 5 months ago

You can't push on this repository so you're expected to fork the repository in your account, push your work there and then make a pull request. Hope my explanations aren't confusing. ^^'

hugohp commented 5 months ago

Ok I've raised a PR. Thanks!