Easy_GA
Easy_GA is a genetic algorithm library made for Rust projects. It provides full customization for your own genotypes definitions and a geneticAlgorithm implementation to wrap all the common logic within a genetic algorithm.
All the changes will be updated in the CHANGELOG.md
Features
trait Gene
: Definition to implement for your custom genotypes.trait Selection
: Definition for your custom selection algorithms.Roulette
: Selection algorithm already implemented.Tournament
: Selection algorithm implementation withn
members on it.
GeneticAlgorithm
: The main class to wrap the business logic in the genetic algorithm execution.
Usage
In your Cargo.tml
you have to add the Easy_GA
dependency
= "*"
easy_ga
Now I will show you a basic example of Easy_GA
that you can find on main.rs
Files to include in order to use features:
use Gene; // For defining our own gene.
use GeneticAlgorithm; // To create a GeneticAlgorithm.
use SelectionAlgorithms; // To specity a concrete SelectionAlgorithm.
Definition of a custom Gene implementing easy_ga::Gene
trait:
At this moment, we need to implement the Clone
& Copy
traits for our Gene
. I will try to avoid that in a future versions.
Initialization of our GeneticAlgorithm
:
let genetic_algorithm = new
.population_size
.iterations
.mutation_rate
.selection_rate
.selection_algorithm
.fitness_goal
.init.unwrap;
We have other ways to initializate our GeneticAlgorithm
such as GeneticAlgorithm::new_with_values
if we don't want the chain calling method.
Now that we have defined our genotype and have initializate our GeneticAlgorhtm
we have 2 ways of running it:
GeneticAlgorithm::run
: This method runs the algorithm until the end and returns a tuple with (Gene
,StopCriteria
) that represents the bestGene
in the execution and the reason to stop the execution.
let = genetic_algorithm.run;
- Iteration by iteration: We have the posibilty of running the algorithm generation by generation and make modification while the execution is running.
while genetic_algorithm.is_running
Next steps
This is a personal side project mainly for me so any further implementations will be done in my spare time as a good way to teach me more about Rust.
- Multithreading
- Add verbosity for debugging
- More unit testing and system testing
- New default
Selection
algorithms - CSV and JSON result export
- Fix some quality of life problems with references and chain calling
License
Easy_GA is licensed under Mozilla Public License 2.0.