Some results of applying a C# / WPF implementation of the ant colony optimisation algorithm to the travelling salesman problem (TSP). My initial observation is that it finds fairly reasonable solutions within a given number of iterations, but falls short of algorithms such as two-opt, Lin-Kernighan etc. The software is built around the Model-View-ViewModel (MVVM) architecture, thereby keeping the graphical display and data separate. For an explanation of the ant colony algorithm see the Wikipedia page . Edge selection Each ant iteratively finds a path from the source node, visiting every other node until it reaches the start node again. The intermediate solutions (node choices) are referred to as solution states. At each iteration, each ant moves from a state x to state y, corresponding to a more complete intermediate solution. Thus, each ant k computes a set of feasible expansions to its current state in each iteration, and moves to one of these in probability. ...