I'm looking for advice or resources to solve a problem similar to TSP but where:
- forks are allowed, ie. the salesman can duplicate himself on each city;
- starting and ending locations doesn't matter and can be different.
This means, given these cities (where x
are cities and visual space between each x
are proportional to distances between cities):
x
x x
x
A regular-TSP solution could be:
x
|\
| x-x
| /
x-/
But I would like this kind of solution, which is better according to the new rules:
x
\
x-x
/
x
Does this problem have a name and are there some publication about an optimized solution?