What GA/GP lib do you use and why?

link|improve this question

feedback

6 Answers

up vote 5 down vote accepted

My own, because it is the easiest to customize :)

link|improve this answer
My sentiments -- I've changed GAlib so much that I'm going to use my own hence forth -- customization is a must! – bias Mar 26 '09 at 20:27
Yea, a GA is not TOO hard to code up. Writing your own greatly makes up for the headaches of lack of functionality in downloaded tools. – Kevin Crowell Mar 26 '09 at 20:28
feedback

I have completed two graduate level research projects using genetic algorithms to automatically design electric motors.

For the first project, I used the EO Evolutionary Computation Framework which is based almost entirely on C++ template programming. It is very powerful but requires (IMO) a lot of concentration to extend it because of the meta nature of the templates and the corresponding nonsense error messages from the compiler.

For the second project, I ported everything over to the Open BEAGLE EC Framework which is based on C++ inheritance instead of templates. It also has a very complete XML-based system for controlling parameters and storing milestones and results. I found it much easier to extend and adapt to my specific needs (mainly mixed integer and float design parameters with manufacturing tolerances).

I also briefly used Open BEAGLE in a simple Genetic Programming experiment and it proved easy to use there as well.

link|improve this answer
feedback

If you are using Python, pyevolve is easy to use. I used it with success. http://pyevolve.sourceforge.net/

link|improve this answer
0.6rc1 is better choice than officially released 0.5 pyevolve.sourceforge.net/0_6rc1 – Uszy Wieloryba Feb 6 at 13:00
feedback

Check out ECJ

link|improve this answer
feedback

I have played around with TinyGP to get a feeling on how to implement my own GP-system. It used to be written in C but got rewritten in Java. Since it's very small it was easy to adapt it for my C++/D uses.

link|improve this answer
feedback

None, because I haven't used genetic algorithms in all the projects I worked with since college.

In college, I rolled my own of course :) - did some weird variation, with variable length genomes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.