1 function [route, length] = ltspsFurthestNeighbourHeuristic (distanceMatrix)
2 % Trivial wrapper around the ltspsGreedyHeuristic function to provide a
3 % heuristic for the furthest neighbour without having to add a
5 [route, length] = ltspsGreedyHeuristic(distanceMatrix,0);