Genetic programming (GP) in objective-c?

I am looking for an open source GP implementation in objective-c. I found some C ++ implementation that I can embed in my obj-c project, but I was wondering if there is an embedded GP GP implementation there.

thanks

+4
source share
1 answer

I would recommend what people said in the comments,

Try to find a reliable C ++ implementation, if you want, you can use Objective-C ++ (basically an Objective-C file with the extension .mm instead of .m) to use these files in your project.

Some popular GP libraries in C ++:

http://www.cs.ucl.ac.uk/staff/ucacbbl/ftp/weinbenner/gp.html (C ++ library)

http://gaul.sourceforge.net/ (C / C ++ library

I was also able to find an example of genetic programming in Objective-C, which you could look at:

http://www.macfanatic.net/blog/2008/12/02/genetic-algorithms/ (Objective-C project example)

PS: If you are really interested in scientific programming in Mac OS X, you definitely need to take a look at Cocoa for scientists , there is always a DIY option ...

+3
source

All Articles