A genetic algorithm in Rust for the following benchmark problems:
- Ackley
- Griewangk
- Rastrigin
- Rosenbrock
- Schwefel
- Sphere
Usage:
- Install Rust
- Build with
cargo build --release
- Search with
./target/release/rust-genetic-algorithm
- See further usage with
rust-genetic-algorithm --help
Based on my prior implementation in C++.