views:

267

answers:

2

I would like to know what is a good, stable, framework that you guys suggest for implementing evolutionary optimisation techniques like PSO or GA?

I have written my own ones and I like them, I would be interested in comparing or adding to existing stable ones (or just using them if they are solid and extensible).

+2  A: 

Well, it depends on how sophisticated and complicated problems you need to solve, but in most cases the problem is such simple, that for example PSO algorithm is quite simple.

Maybe just try to find some good framework for matrix operations and implement it on your own?

But as I said, it all depends on the complexity of your problem. I used the PSO for quite simple problems (finding minimas of very complicated functions etc...) so I never needed any framework.

Gacek
+1  A: 

Will the Microsoft Solver Foundation help?

Related Podcast:

Vivek Bernard
Thank you for this excellent resource!
Luke Machowski
Your welcome mate. Also check out this podcasthttp://www.hanselminutes.com/default.aspx?showID=209In this particular show, a guy from the MSF team talks with scott hanselman.
Vivek Bernard