I am looking for an open source GP implementation in 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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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…