I am familiar with the generalities of genetic programming but am wondering where i might find something that shows me details of implementing genetic programming. I use C# and .NET 3.5, and I would like to put to use genetic programming for things like pathfinding, and generally just want to see what it can do. EDIT: I should probably clarify what I'm looking for: I'm interested in what sort of data structures would be used to store the syntax trees, how a breeding operation might be performed, that sort of thing.
|
feedback
|
|
Here is a quick rewrite of one of C++ HelloWorld examples that helped me learn genetic programming:
There might be some minor errors but otherwise it looks it's working ok. Also it could be written better in spirit of C# but those are just details. :) | |||
|
feedback
|
|
Roger Alsing's Mona Lisa project is a quite good example. http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mona-lisa/ EDIT: The reason I like the example is because it rather small and easy to understand. Its a quick and easy way to grasp the concept of genetic programming. | |||||||
feedback
|
|
You could look at Survival of the Fittest: Natural Selection with Windows Forms. EDIT: See this previous SO question, which I just found. It's pretty much a duplicate. Sorry you don't understand the link (it's good to mention such things in the question). Also, the other question is still open for more answers/edits, even though an answer has been accepted. | ||||
feedback
|
|
You can try this C# .NET 4.0 port of Sean Luke's ECJ (Evolutionary Computation in Java): http://branecloud.codeplex.com It is very flexible and powerful software! But it is also relatively easy to get started because it includes many working console samples out-of-the-box (and many helpful unit tests that were developed during the conversion). Ben | |||
|
feedback
|