1
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 7 hours ago. based on code collected about 17 hours ago.
May 22, 2023 — May 22, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Added some kind of CMA-ES, the interface and algorithm are not fully implemented. More... about 14 years ago
Extracted generate and lambdify function out of ProgramGenerator. Renamed ProgramGenerator to ProgrammingSets. More... about 14 years ago
Added the method addEphemeralConstant to the ProgramGenerator class. More... about 14 years ago
Removed a print in Tree class More... about 14 years ago
Added a GP example : gp_parity. This example demonstrates how to use EAP GP interface to create logic program. More... about 14 years ago
Merged documentation changes and addition of the GP. More... about 14 years ago
Adapted documentation to version 0.4.0 More... about 14 years ago
Merge preceding branch. Removed import of itertools in gp_symbreg More... about 14 years ago
Introducing a new way of doing GP with EAP. More... about 14 years ago
Replaced imap by map in ga_onemax and algorithms, removed ES mutation and ES crossover as no ES is supported in EAP yet. More... about 14 years ago
Added a new module creator. This modules has a method create and is used to add new classes that herit from base classes of eap. More... about 14 years ago
===DOC=== Modification de la documentation, changement du layout (on doit avoir les layout fournit avec la version développementale de sphinx 1.0.0) Modification de la documentation du __init__ More... about 14 years ago
Modified documentation More... about 14 years ago
Modified documentation More... about 14 years ago
MOdified to follow logging modifications More... about 14 years ago
Added some log More... about 14 years ago
Changed print statements to log statements More... about 14 years ago
Two small modifications to crt_nbproject.py to make it more portable. More... over 14 years ago
Added a Python script to easily create the Netbeans project associated with this clone of EAP. More... over 14 years ago
Modified the standard deviation computation in all algorithms. The N-1 wasn't right since this wasn't a standard deviation computed on a sample of the population, but on the entire population. More... over 14 years ago
- Replaced in all algorithms sum by math.fsum for the sum of fitnesses. - Replaced in all algorithms the call to reduce to a call math.fsum(imap ...). This feels more intuitive. More... over 14 years ago
Simplified symbolic regression evaluation function. More... over 14 years ago
[[]] * N produce a list of N times the same list. So instead we now use : [list()] * N to produce a list of N lists. More... over 14 years ago
Mercurial seems to want me to merge alot ! More... over 14 years ago
Corrected bug introduced in revision 112 More... over 14 years ago
Added some comments on EAP More... over 14 years ago
Cannot use : [[]] * X to produce an array because More... over 14 years ago
Simplified count method of IndividualTree. More... over 14 years ago
Reduced code in the try statement of addTerminal of the ToolboxGP class, by using the else statement. Added a clause in the addOperation when type is not equal to 'binary' or 'unary', and raise an exception. More... over 14 years ago
Added the TypeError exception instead of a bare except in __expressionGenerator() method of expressionGenerator() More... over 14 years ago