Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Genetic Programming in C?

I want to create an algorithm using genetic programming, based on symbolic regression.

I read some articles about that, some examples written on java or c++.

Maybe is more difficult because it isn't OOP, but is it possible to develop genetic programming in C?

What do you suggest to me to start programming? Any books/articles/examples to read? I tried googling about that, but I didn't find anything interesting..

Thank you, cheers.

like image 549
Alberto Solano Avatar asked Jun 11 '11 15:06

Alberto Solano


2 Answers

I've used GAUL in the past, and I'm fairly certain it's written to work with C. It did the job for me.

like image 62
Chris Eberle Avatar answered Sep 22 '22 17:09

Chris Eberle


What do you suggest to me to start programming?

If you're starting to program I highly recommend a modern language that comes with a rich set of libraries and is more forgiving to beginner's mistakes.

Free environments are available for most languages, personally I'd suggest C# (using either the free MS stuff or Mono) or Java (using Eclipse).

Groovy or Python are good choices, too.

You most definitely won't start with C, that is assuming you're not constrained by some particular environment your solution has to run on that only supports C.

Just my 2c ;-)

Cheers, Jay

like image 24
Jay Avatar answered Sep 22 '22 17:09

Jay