Skip to content

Commit

Permalink
feat!: remove cuckoo search algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
pnevyk committed Nov 12, 2023
1 parent fe86e32 commit 29b22be
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 457 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ implementation is benchmarked against with
work in most of the cases.
* LIPO -- A global optimization algorithm useful for initial guesses search in
combination with a numerical solver.
* 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 -- Not generally recommended, but may be useful for
low-dimensionality problems with an ill-defined Jacobian matrix.
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
//! default and it will just work in most of the cases.
//! * [LIPO](solver::lipo) -- A global optimization algorithm useful for initial
//! guesses search in combination with a numerical solver.
//! * [Cuckoo search](solver::cuckoo) -- A global optimization algorithm useful
//! for initial guesses search in combination with a numerical solver.
//! * [Steffensen](solver::steffensen) -- Fast and lightweight method for
//! one-dimensional systems.
//! * [Nelder-Mead](solver::nelder_mead) -- Not generally recommended, but may
Expand Down
2 changes: 0 additions & 2 deletions src/solver.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
//! The collection of implemented solvers.
pub mod cuckoo;
pub mod lipo;
pub mod nelder_mead;
pub mod steffensen;
pub mod trust_region;

pub use cuckoo::Cuckoo;
pub use lipo::Lipo;
pub use nelder_mead::NelderMead;
pub use steffensen::Steffensen;
Expand Down
Loading

0 comments on commit 29b22be

Please sign in to comment.