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