daffidwilde / edo

A library for generating artificial datasets through genetic evolution.
https://doi.org/10.1007/s10489-019-01592-4
MIT License
13 stars 0 forks source link

Moving towards a `GeneticAlgorithm` class? #84

Closed daffidwilde closed 5 years ago

daffidwilde commented 5 years ago

One of the reasons edo is built the way it is is so many of the parts are user-definable. However, this isn't necessarily the case a lot of the time when certain function parameters only take a subset of the others -- e.g. those that affect the mutation process can't take the fitness or history into account.

Maybe having these parts be user-defined methods would allow for people to have more control and freedom over what their EAs do.

daffidwilde commented 5 years ago

Fixed as of #122 but documentation must be updated.