DM841 (E23) - | Heuristics and Constraint Programming for |
Discrete Optimization |
Read the Python tutorial [No]. You find some starting code from that page here.
Implement the exact methods: plain enumeration and Held Karp dynamic programming algorithm.
Following the procedure for Benchmarking described in [No] implement and compare as many TSP heuristics as you can. You find a list below, in bold the heuristics implemented in [No]. For a description of these heuristics see [Be].
In Python kd-trees are already implemented in the module scipy. Try to use them and improve some implementations of the construction heuristics described above (you will probably need to change the representation of points).