views:

853

answers:

3

How can I write genetic algorithms in C#? Are there libraries available? Like C++: http://lancet.mit.edu/ga/

+3  A: 

http://www.google.com/search?q=C%23+Genetic+Algorithm

Matt Grande
Which now includes a link to this post!
David Kemp
+1  A: 

You can find some genetic algorithm information for C# on CodeProject.

Lucero
A: 

I developed a simple GA showcase project in C#. It's the hello world of genetic algorithms, and I built the example on a set of interfaces that are general enough to be used as a pattern for developing genetic algorithms.

You can find code and documentation (including an Enterprise Architect doc including design diagrams) on the github page. You can also download the executable to see it in action.

Hope it helps.

JohnIdol