traveling_salesperson_problem (366B)
1 # Traveling salesperson problem 2 3 https://en.wikipedia.org/wiki/Travelling_salesman_problem 4 5 [approximation] when the [distances] correspond to a [metric_space]: 6 - [Christofides_algorithm] https://en.wikipedia.org/wiki/Christofides_algorithm 7 - slight approximation in [karlin2023slightly] 8 9 See also: [chinese_postman_problem] 10 11 Up: [computational_problem] on [graphs]