Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork495
Open
Description
In thedocs, it says that:
If a gene has its static space defined in the gene_space parameter, then mutation works by replacing the gene value by a value randomly selected from the gene space.
However, if agene_space is defined as a dict withlow andhigh parameters, it should be possible to generate additive mutations, so thatnew_value = old_value + random_value, rather thannew_value = random_value.
I had a brief look in the source code, and this wasn't supported at the moment.