5. Construct a TSP tour by going through the Eulerian tour and when we encounter a node we have already visited, simply skip over it and connect the previous node to the next one that has not been visited yet.
--------------------------------------------------------------------------------------------------------------
+
+**Tour Improvement**
+
+Typically, the heuristic solutions can generate a decent solution to the TSP, but they are often constricted simply by the idea that defines them.
+Take this graph for instance, generated by the Christofides Algorithm.
+
+
+
+If you notice the edge between (273, 269) and (334,510) and the edge between (263, 392) and (510, 143). They cross each other and it would probably be a better solution if they connected differently.
+This method of improving a candidate solution created by a heuristic is called local search.
+--------------------------------------------------------------------------------------------------------------
+
+**Random Swapping**
+