Tagged Questions
25
votes
10answers
10k views
Genetic Programming in C#
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?
6
votes
7answers
526 views
C# how to create functions that are interpreted at runtime
I'm making a Genetic Program, but I'm hitting a limitation with C# where I want to present new functions to the algorithm but I can't do it without recompiling the program. In essence I want the user ...
5
votes
1answer
614 views
Using Graph Theory in Vehicle Routing Problem
I am working on a Vehicle Routing Problem with a single depot. The problem definition is as follows. There are n vechiles that need to travel to m number of sites. Each site has its specific ...
2
votes
4answers
1k views
C# Dynamic Trees for Genetic Programming
I have some public user defined classes with relations between their members and also several methods with specific and generic signatures.
I would like to be able to store and manipulate custom ...
0
votes
4answers
810 views
Genetic Programming Implementation
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 ...