Objective-c 中的遗传编程(GP)实现?
我正在寻找 Objective-c 中的开源 GP 实现。我发现了一些可以嵌入到我的 obj-c 项目中的 C++ 实现,但我想知道是否有 GP 的本机 obj-c 实现。
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会推荐人们在评论中所说的,
尝试找到一个强大的C++实现,如果你愿意,你可以使用Objective-C++(基本上是一个带有.mm扩展名而不是.m的Objective-C文件)来使用这个文件在你的项目中。
一些流行的 C++ GP 库是:
http://www .cs.ucl.ac.uk/staff/ucacbbl/ftp/weinbenner/gp.html(C++ 库)
http://gaul.sourceforge.net/(C/C++ 库
我还能够找到 Objective-C 中的遗传编程示例,您可以查看:
http://www.macfanatic.net/blog/2008/12/02/genic-algorithms/ (目标-C 示例项目)
PS: 如果您真的对 Mac OS X 下的科学编程感兴趣,您一定应该看看 科学家的可可,总是有 DIY 的选择......
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...