Genetic Programming (GP) implementation in objective-c?
I am looking for an open source GP implementation i开发者_如何学编程n objective-c. I found some C++ implementation which I can embed in my obj-c project but I was wondering if there's a native obj-c implementation of GP out there.
Thanks
I would recommend what the people have said in the comments,
Try to find a robust C++ implementation, if you want, you can then use Objective-C++ (basically an Objective-C file with a .mm extension instead of .m) to use this files in your project.
Some popular GP libraries in C++ are :
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 a genetic programming example in Objective-C that you could look:
http://www.macfanatic.net/blog/2008/12/02/genetic-algorithms/ (Objective-C example project)
PS: If you're really interested in Scientific Programming under Mac OS X, you should definitely take a look at Cocoa For Scientists, there's always the option of DIY...
精彩评论