genevo provides building blocks to run simulations of optimization and search problems using genetic algorithms ([GA]).
The vision for genevo is to be a flexible and greatly extensible framework for implementing genetic algorithm applications.
genevo is written in [Rust]. The library's API utilizes lots of traits and types for modelling the domain of genetic algorithms.
Add this to your Cargo.toml
:
toml
[dependencies]
genevo = "0.1"
And add this to your crate:
rust
extern crate genevo;
Have a look at the examples to see how to use this crate: * monkeys: explores the idea of Shakespeare's monkeys, also known as the infinite monkey theorem * queens: searches for solutions of the N Queens Problem
Copyright © 2017, Innoave.com and contributors