Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pietrozanotta/optimax
Numerical methods to solve optimization problems in Rust
https://github.com/pietrozanotta/optimax
optimization rust
Last synced: 9 days ago
JSON representation
Numerical methods to solve optimization problems in Rust
- Host: GitHub
- URL: https://github.com/pietrozanotta/optimax
- Owner: PietroZanotta
- Created: 2023-10-30T22:22:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-22T17:15:51.000Z (about 1 year ago)
- Last Synced: 2024-12-02T01:08:06.177Z (25 days ago)
- Topics: optimization, rust
- Language: Rust
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# optimax
Numerical methods to solve optimization problems in Rust.
- [Crates](https://crates.io/crates/rustonomicon_optimax/0.1.2)
- [Documentation](https://docs.rs/rustonomicon_optimax/0.1.2/rustonomicon_optimax/)## Installation
To start using the crate in a project, the following dependency must be added in the project's Cargo.toml file:
```
[dependencies]
optimax = "0.1.2"
```Then, in the main file, add
```
use optimax::*
```