https://github.com/acj/genetic-algorithms
A collection of sketchy genetic algorithms for educational purposes only
https://github.com/acj/genetic-algorithms
Last synced: over 1 year ago
JSON representation
A collection of sketchy genetic algorithms for educational purposes only
- Host: GitHub
- URL: https://github.com/acj/genetic-algorithms
- Owner: acj
- Created: 2013-06-05T00:25:34.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2020-07-05T17:54:11.000Z (almost 6 years ago)
- Last Synced: 2025-01-04T09:08:51.298Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# genetic-algorithms
When I'm learning a new programming language, one of the first non-trivial programs I write is a
[genetic algorithm](https://en.wikipedia.org/wiki/Genetic_algorithm). GAs call for custom types,
collections, loops, string manipulation, floating point math, decent code organization, and
(optionally) concurrency. There's just enough complexity to force me into the weeds and get to know
the language.
This repository is a collection of such programs. They should mostly work, but I don't recommend using them for anything important.