Skip to content

Commit

Permalink
docs: Fix list of algorithms in README
Browse files Browse the repository at this point in the history
  • Loading branch information
pnevyk committed Mar 11, 2022
1 parent 422eeae commit 53f300d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ implementation is benchmarked against with

## Algorithms

* [Trust region](trust_region::TrustRegion) -- Recommended method to be used as
a default and it will just work in most of the cases.
* [Cuckoo search](cuckoo::Cuckoo) -- A global optimization algorithm useful for
initial guesses search in combination with a numerical solver.
* Trust region -- Recommended method to be used as a default and it will just
work in most of the cases.
* Cuckoo search -- A global optimization algorithm useful for initial guesses
search in combination with a numerical solver.
* Steffensen -- Fast and lightweight method for one-dimensional systems.
* [Nelder-Mead](nelder_mead::NelderMead) -- Not generally recommended, but may
be useful for low-dimensionality problems with ill-defined Jacobian matrix.
* Nelder-Mead -- Not generally recommended, but may be useful for
low-dimensionality problems with ill-defined Jacobian matrix.

## Roadmap

Expand Down

0 comments on commit 53f300d

Please sign in to comment.