Applying a genetic algorithm to the Linear Assignment Problem
Some sample C# code on how a genetic algorithm can be applied to the linear assignment problem. This problem can be efficiently solved using the Hungarian algorithm, but I wanted to demonstrate how the genetic algorithm can produce an optimal solution too. This example is implemented as a simple console application using code developed in …
Continue reading ‘Applying a genetic algorithm to the Linear Assignment Problem’ »