Tagged Questions
5
votes
5answers
1k views
4
votes
4answers
647 views
Genetic programming in c++, library suggestions?
I'm looking to add some genetic algorithms to an Operations research project I have been involved in. Currently we have a program that aids in optimizing some scheduling and we want to add in some ...
3
votes
2answers
218 views
Error in compiling c++ program in Visual Studio 2010
Hey guys I cant seem to get my following c++ program compiled in Visual Studio 2010. I already have a working build of the same code so I know the code is correct. But I have no idea with what or how ...
1
vote
3answers
287 views
How to create a container that holds different types of function pointers in C++?
I'm doing a linear genetic programming project, where programs are bred and evolved by means of natural evolution mechanisms. Their "DNA" is basically a container (I've used arrays and vectors ...
1
vote
4answers
403 views
Genetic Algorithm optimization in C++
I'm looking for effective means of adding or omitting code in order to help my genetic algorithm program return faster results. The goal of the program is to accept a string and create other strings ...