A work-in-progress optimization toolbox written in Rust. Highly unstable and potentially very buggy. Please use with care and report any bugs you encounter. This crate is looking for contributors! Please get in touch with me if you're interested.
This crate's intention is to be useful to users as well as developers of optimization algorithms, meaning that it should be both easy to apply and easy to implement algoritms. In particular, as a developer of optimization algorithms you should not need to worry about usability features (such as logging, dealing with different types, setters and getters for certain common parameters, counting cost function and gradient evaluations, termination, and so on). Instead you can focus on implementing your algorithm and let argmin do the boring stuff for you.
#[derive(ArgminSolver)]
. With is approach, the interfaces to different solvers will be fairly similar, making it easy for users to try different methods on their problem without much work.Since this crate is in a very early stage, so far most points are only partially implemented. In addition it is very likely very buggy.
The following list shows some of the important parts that need to be tackled in the near future:
#![no_std]
Any help is appreciated!
Add this to your Cargo.toml
:
[dependencies]
argmin = "0.1.3"
There are additional features which can be activated in Cargo.toml
:
[dependencies]
argmin = { version = "0.1.3", features = ["ctrlc", "ndarrayl"] }
These are currently optional, but they may move to the default features in the future.
Without adding these features compilation to wasm32-unknown-unkown
seems to be possible.
ctrlc
: Uses the ctrlc
crate to properly stop the optimization (and return the current best result) after pressing Ctrl+C.ndarrayl
: Support for ndarray
and ndarray-linalg
.Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.