Grammatical evolution is a form of genetic programming that allows you
to search for a program fragment or form that has a high fitness by
evolving and testing multiple models across generations.
Grammatical evolution differs from traditional genetic programming in
that individuals are created from a BNF grammar, this makes it much
easier to specify constraints in the solution and adapt the search to
new problem domains.
geva-clj allows you to evolve clojure programs or drive java based
searches written in the GEVA framework.
There's a getting started guide available at
http://cdorrat.github.com/geva-clj/The source is on github at
http://github.com/cdorrat/geva-cljThe GEVA project page with lots of documentation and Java examples is
available at
http://ncra.ucd.ie/Site/GEVA.htmlThe core library is available on clojars, add the following to your project.clj
[org.clojars.cdorrat/geva-core "1.2-SNAPSHOT"]
Cameron.