views:

502

answers:

2

Hi everybody. I'm looking for a .NET-Class library or .NET-Framework which implements ant colony optimization. Can you give me any links, resources, etc. about this topic.

+2  A: 

Have a look at Wikipedia article. It provides a good desription of the algorithm. The algorithm is rather easy to implement based on that arcicle.

www.aco-metaheuristics.org provides some more info on subject.

I have implemented a solution to travelling salesman problen using python. It is not .NET but maybe it is some help for you.

Juha Syrjälä
Solution using python is very good. Thank you
DreamWalker
+3  A: 
Dario