Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Genetic Programming in C# [closed]

I've been looking for some good genetic programming examples for C#. Anyone knows of good online/book resources? Wonder if there is a C# library out there for Evolutionary/Genetic programming?

like image 312
Mac Avatar asked Aug 17 '08 23:08

Mac


People also ask

What is used for genetic programming?

C++: C++ is one of the best choices for genetic programming as they are highly computationally intensive. It provides a high-level of software environment to do complicated work in genetic programmings such as tree-based GP, integer-valued vector, and real-valued vector genetic algorithms, evolution strategy and more.

Why genetic algorithm is used?

Genetic algorithms are commonly used to generate high-quality solutions to optimization and search problems by relying on biologically inspired operators such as mutation, crossover and selection.


1 Answers

After developing my own Genetic Programming didactic application, I found a complete Genetic Programming Framework called AForge.NET Genetics. It's a part of the Aforge.NET library. It's licensed under LGPL.

like image 136
Jader Dias Avatar answered Sep 21 '22 21:09

Jader Dias