FindShortestTour for charity (or: How can I optimize meal delivery with FindShortestTour?)

When I did a similar job, it wasn't really the distance that made the difference. It would sometimes be quicker to drive 30 miles into the country for a drop than to try to cross the city at rush hour or during the school run. So it might be worth trying to work out the times between each drop and then find the route that has the shortest total time, rather than do it by distances on a map.

Here, rather clumsily derived, is a list of the different routes between, say, 8 places:

numberOfPlaces = 8;
edges = DeleteCases[
  Map[#[[1]] \[DirectedEdge] #[[2]] &, 
   Tuples[Range[1, numberOfPlaces], {2}]], 
  x_ \[DirectedEdge] x_ /; x == x]

and we can assign times in minutes for travelling between each place, here just randomly. This is a bit of work initially, but most drivers would be able to estimate the times quite quickly.

randomweights = RandomInteger[{0, 45}, Length[edges]]

{17, 38, 25, 17, 9, 42, 7, 42, 11, 14, 40, 17, 4, 23, 4, ... 40}

Combine these with the edges:

edgeWeightRules = 
 MapThread[
   Rule, {edges, randomweights}] /. 
    (1 \[DirectedEdge] 4 -> n_) -> 1 \[DirectedEdge] 4 -> 200

I've set the value for traveling between places 1 and 4 to 200, for use later on. Next, draw a graph:

 cg = Graph[edges, 
  VertexLabels -> "Name",
  VertexStyle -> Red,
  EdgeWeight -> edgeWeightRules, 
  EdgeLabels -> edgeWeightRules, 
  ImagePadding -> 10]

simple graph

This is not a physical map, but a picture showing the different travel times between different places. Then create a weighted adjacency graph:

wam = Normal[WeightedAdjacencyMatrix[cg]] /. 0 -> Infinity;
wag = WeightedAdjacencyGraph[wam, 
  EdgeShapeFunction -> 
   GraphElementData[{"DotLine", "ArrowSize" -> .01}],
  VertexLabels -> "Name", 
  EdgeWeight -> edgeWeightRules, 
  EdgeLabels -> edgeWeightRules, 
  EdgeLabelStyle -> Directive[Gray, Italic, 12],
  VertexLabelStyle -> Directive[Black, 16],
  EdgeStyle -> Directive[LightGray],
  ImagePadding -> 20]

weighted adjacency graph

Apparently, a Hamiltonian cycle is not a two-wheeled delivery device, but a path visting every vertex exactly once:

FindHamiltonianCycle[wag, All]

{{1 -> 2, 2 -> 3, 3 -> 4, 4 -> 5, 5 -> 6, 6 -> 7, 7 -> 1}

so we should find all of them, and then sort them by the total time each one takes:

routes = Sort[{Total[# /. edgeWeightRules], #} & /@ 
   FindHamiltonianCycle[wag, All]]

This returns a list of all possible cycles, with the quickest one first. So the quickest route that turns up at all locations once takes 54 minutes (that's driving past and throwing the items out of the window...:).

{54, {1 -> 6, 6 -> 4, 4 -> 3, 3 -> 5, 5 -> 7, 7 -> 2, 2 -> 1}}

Then it's possible to investigate the different routes, using a Manipulate to step through the Hamiltonian cycles:

Manipulate[
 Column[{
   Row[{"length of ", Last[routes[[n]]], " is ", First@routes[[n]]}],
   HighlightGraph[
    wag,
    PathGraph[
     Last@routes[[n]],
     DirectedEdges -> True],
    GraphHighlightStyle -> "Thick",
    ImageSize -> 400]
   }], {n, 1, Length[routes], 1}]

manipulate for exploring the routes

The artificially slowed-down route shows up as being part of the longest cycles.

At least this approach avoids the problems of trying to find routes through the one-way systems of cities.


The FindShortestTour outputs leave a lot to be desired, in fact, none of the solutions shown for the coprime examples in the help browser are optimal. Some take half an hour to compute, and if you increase the number of nodes to a few dozen or hundred, it runs for a few days without providing good solutions. I assume you have plenty of needy people in NYC, not just some 20 or 30.

You could use the add-on package JVMTools, which has several highly advanced TSP functions. The outputs are generally optimal for a few hundred locations, and they are usually 1 - 3% longer than optimal for a few thousand locations, within seconds or minutes of running time. JVMTools was written for industrial-strength applications.

These TSP functions of JVMTools make maximum use of multi-threading, it will autosubmit as many competing calculations as you have cores on your machine, and you can always request more (threads = calculations), and then request output of either all solutions, or only the best. This is the TSP intro page and these are the TSP power examples.

You can assign arbitrary (non-negative!) distances, so you could use the Euclidean norm or the Manhattan-norm or anything else (Broadway doesn't exactly obey the Manhattan norm). You can "merge" points by setting a distance of 0 or model one-way streets by using a distance of infinity.

Free trial version


As of version 10.3 we can find an optimal tour with respect to driving distance and driving time!

Here's some random locations:

schools = EntityList[EntityClass["PublicSchool", {"City", {"Champaign", "Illinois", "UnitedStates"}}]][[1 ;; 8]];

We can minimize the distance driven with FindShortestTour + TravelDistance (Note, this is slow due to many API calls to an external service):

{dist, tour1} = FindShortestTour[schools, DistanceFunction -> TravelDistance]
{Quantity[10.584, "Miles"], {1, 8, 5, 4, 6, 3, 2, 7, 1}}

We can do the same for time with TravelTime:

travelTimeHours = N@UnitConvert[TravelTime[##], "Hours"] &;

{time, tour2} = FindShortestTour[schools, DistanceFunction -> travelTimeHours]
{Quantity[0.334722, "Hours"], {1, 8, 5, 7, 2, 3, 6, 4, 1}}

Notice that both tours differ slightly. Also observe they differ a lot from straight line distance:

FindShortestTour[GeoPosition[schools]]
{Quantity[7.23617, "Miles"], {1, 8, 6, 3, 2, 7, 4, 5, 1}}

We can visualize the optimal tours with GeoGraphics + TravelDirections:

mindist = TravelDirections[schools[[tour1]]];
mintime = TravelDirections[schools[[tour2]]];

{
  GeoGraphics[{{Black, Thick, Arrow[mindist]}, {GeoMarker[schools]}}, PlotLabel -> Row[{"Minimal distance of ", dist}]],
  GeoGraphics[{{Black, Thick, Arrow[mintime]}, {GeoMarker[schools]}}, PlotLabel -> Row[{"Minimal time of ", time}]]
}

enter image description here


Edit

Given n locations, we can limit the number of API calls from n^2 to 2 by using TravelDistanceList + FindPostmanTour.

Here's a function that computes the travel distance between each pair in bulk:

TravelDistanceAssociation[locs_List] /; OddQ[Length[locs]] :=
  Block[{n, inds, keys1, dists1, keys2, dists2},
    n = Length[locs];
    inds = FindPostmanTour[CompleteGraph[n]][[1, All, 1]];
    AppendTo[inds, First[inds]];
    
    keys1 = locs[[#]]& /@ Partition[inds, 2, 1];
    dists1 = Normal[TravelDistanceList[locs[[inds]]]];
    
    keys2 = locs[[#]]& /@ Partition[Reverse@inds, 2, 1];
    dists2 = Normal[TravelDistanceList[locs[[Reverse@inds]]]];
    
    Join[
        AssociationThread[keys1, dists1],
        AssociationThread[keys2, dists2],
        Association[Thread[Transpose[{locs, locs}] -> Quantity[0, "Miles"]]]
    ]
  ]

This makes things much faster:

(
  lookup = TravelDistanceAssociation[schools];
  travelDistance[args__] := lookup[{args}];
  res1 = FindShortestTour[schools, DistanceFunction -> travelDistance];
) // AbsoluteTiming
{1.92451, Null}
res2 = FindShortestTour[schools, DistanceFunction -> TravelDistance]; // AbsoluteTiming
{14.6521, Null}

Verify the faster call gives the same result:

res1[[-1, -1]] == res2[[-1, -1]]
True