1
I Use This!
Very Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Feb 18, 2025 — Feb 18, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Medium bug in Iterate : - The first iterator was created at the initialization of the object Iterate. Since, the function producing the sequence on which Iterate iterates might be random, the first iterator can't be created during initialisation since the random seed can be changed afterwards. More... over 15 years ago
Modified all examples to use if __name__ == "__main__". Example coev_symbreg now import gp_symbeg instead of redifining the toolbox content and the primitive set. More... over 15 years ago
In gp_ant example : - Removed unused import - Renamed variable file to trail_file (shadow built-in) More... over 15 years ago
- Removed addADF in PrimitiveSet since it had nothing to the inherit function. - Removed adfs attributes in PrimitiveTypedSet since it has no used anymore either. - Slightly modifier gp_spambase example to better demonstrate the possibilites of the new GP interface. More... over 15 years ago
PrimitiveSet (and PrimitiveSetTyped) now have a name and an arity. - This enable the possibility to automatically generate the function arguments. - The addADF method now takes and PrimitiveSet as argument, reducing the error of writing the ADF name multiple times. - The method renameArguments has been added to PrimitiveSet, and give the user the possibility to rename the automatically renamed arguments with a dict mapping the old name with the new one. - Modified the examples to use the new PrimitiveSet interface More... over 15 years ago
The primitive set is now added via the creator as a part of the Tree in GP. This reduces the complexity of the toolbox registration and the algorithm when using ADFs. The code length is untouched when ADFs aren't used. More... over 15 years ago
Modified first ADF prototype to support ADF calling ADF of greater indices (0 can call 1,2,3, 1 can call 2,3, etc.) More... over 15 years ago
Integration of ADF first prototype in GP. More... over 15 years ago
merge More... over 15 years ago
FuncCycle class no long inherits from list, since it has no use of it. More... over 15 years ago
Added tag 0.5 for changeset 8da74446510d More... over 15 years ago
merge More... over 15 years ago
Corrected error in the new register integrating regInit : - when using initialization with FuncCycle, the content was never initialized. More... over 15 years ago
Added tag 0.5 for changeset a178ac75270d More... over 15 years ago
Added some operators documentation. More... over 15 years ago
merge More... over 15 years ago
In documentation - evo_toolbox.rst : Removed genotype categories in Crossover and added GP operators in Crossover and Mutation. More... over 15 years ago
Added documentation for ES operators and Messy crossover. More... over 15 years ago
Modified seed in gp_symbreg to demonstrate a converging run. More... over 15 years ago
Added documentation to basic gp operators. More... over 15 years ago
Added an example of symbolic regression coevolution with GA and GP. The GP individuals are the symbolics expressions and the GA individuals are the test cases of the function. More... over 15 years ago
Replaced 'Mean' and 'Std. Dev.' in statistics logging by 'Avg' and 'Std', in both examples and algorithms. More... over 15 years ago
Added mu parameter to the gaussian mutation and modified the corresponding example. More... over 15 years ago
Modified some documentation. More... over 15 years ago
Corrected cxSet and mutSet in ga_knapsack exemple to del fitness.values instead of fitness.valid = False More... over 15 years ago
merge More... over 15 years ago
- Modified class Fitness : - Instead of multiplying the fitness' values by its weights at each comparison, values is now a property which when set compute the product and store it into wvalues. - The comparisons now operate on wvalues. - valid is now only a getter property. To invalidate a fitness the user should delete values : del fitness.values. - the delete function is set as a property of values and set wvalues as an empty tuple. - Modified all operators in toolbox to call del ind.fitness.values instead of ind.fitness.valid = False. More... over 15 years ago
merge More... over 15 years ago
Added Tree members in documentation. More... over 15 years ago
merge More... over 15 years ago