Build Status

argmin

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.

Documentation.

Design goals

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.

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.

What is still needed?

The following list shows some of the important parts that need to be tackled in the near future:

Any help is appreciated!

Algorithms

Usage

Add this to your Cargo.toml:

[dependencies] argmin = "0.1.3"

Optional features

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.

License

Licensed under either of

at your option.

Contribution

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.