Skip to content
This repository has been archived by the owner on Dec 30, 2020. It is now read-only.

Latest commit

 

History

History
26 lines (19 loc) · 753 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 753 Bytes

Genetic Algorithm

Build Status

A genetic algorithm in Rust for the following benchmark problems:

  • Ackley
  • Griewangk
  • Rastrigin
  • Rosenbrock
  • Schwefel
  • Sphere

Usage:

  1. Install Rust
  2. Build with cargo build --release
  3. Search with ./target/release/rust-genetic-algorithm
  4. See further usage with rust-genetic-algorithm --help

Based on my prior implementation in C++.