I'm not sure I can call it a simplification of TSP but here it is:
Suppose you're given the Traveling Salesman Problem but in addition, you're also given the shortest possible distance (not the route) for the whole journey. How much faster would it be to find the shortest possible route with this extra bit of information?
$\\$
Note: I realize that the answer depends on what algorithm you choose. So you feel free to use your favourite algorithm to make this comparison.
In the worst case, it is as difficult as the original problem without the hint. For example, suppose that all weights are $1$, and I tell you that the shortest tour has length $n$, where $n$ is the number of nodes.