More tests + GUI
[ltsps.git] / ltspsFurthestNeighbourHeuristic.m
bloba2db81106ae76a4cf8a7f1f7ba329a7cd08027d1
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
4     % parameter.
5     [route, length] = ltspsGreedyHeuristic(distanceMatrix,0);
6 end