Genetic programming in C?

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

I read some articles about this, some examples are written in Java or C ++.

This may be more complicated because it is not OOP, but is it possible to develop genetic programming in C?

What do you suggest me to start programming? Any books / articles / examples to read? I tried to take a walk about this, but I did not find anything interesting.

Thanks, greetings.

+6
source share
4 answers

I have used GAUL in the past, and I'm pretty sure that he wrote to work with C. He completed the task for me.

+6
source

What do you suggest me to start programming?

If you start programming, I highly recommend the modern language, which comes with a rich set of libraries and more forgives novice errors.

Free environments are available for most languages, I personally offer C # (using either free MS or Mono material) or Java (using Eclipse).

Groovy or Python are also a good choice.

Most likely, you will not start with C, assuming that you are not limited to any specific environment on which your solution should work, which only supports C.

Just my 2c; -)

Cheers, Jay

+2
source

It is definitely possible to implement a genetic algorithm with C. If you just want to focus on experimenting with the algorithm without machine parts and don't know C yet, then I recommend python.

+1
source

TinyGP was originally written in C, so yes, it is possible to implement genetic programming with C. For genetic programming, I would recommend the Fiueld Guide to Genetic Programming , as it is freely available and has many links. It is very practical, but not as thorough as other texts.

0
source

Source: https://habr.com/ru/post/890293/