Charles Reid
e6d2e1c21d
|
8 years ago | |
---|---|---|
guava | 8 years ago | |
img | 8 years ago | |
schoolteacher-guava | 8 years ago | |
.gitignore | 8 years ago | |
LICENSE | 8 years ago | |
README.md | 8 years ago |
README.md
tsp - Traveling Salesperson Problem
Solve, time, and profile programs solving the traveling salesperson problem in various languages. Solution relies on use of graph object.
guava
Directory containing solutions to TSP using Google Guava library, a Java library for high-performance data containers.
Figure: Initial results of a scaling study with a Guava implementation of the Traveling Salesman Problem.
schoolteacher-guava
Solves the Traveling Schoolteacher Problem (a variation on the Traveling Salesperson Problem that introduces additional constraints).
See schoolteacher-guava README for a more detailed description of the problem.
Figure: Initial results of a scaling study with a Guava implementation of the Traveling Schoolteacher Problem, a constrained version of the Traveling Salesperson Problem.
cpp
Directory containing solutions to TSP in C++. Will use Boost.