function composeLongest(m, opt) {
const defaults = { r: new Renderer(300, 300), cShortest: composeShortest };
opt = Object.assign({}, opt, defaults);
const furthest = (ds) => {
let [maxD, maxPos] = [ds[0][0], [0, 0]];
for (let row = 0; row < m.nRows; row++) {
for (let col = 0; col < m.grid[row].length; col++) {
if (ds[row][col] > maxD) {
maxD = ds[row][col];
maxPos = [row, col];
}
}
}
return maxPos;
};
const cellA = furthest(distanceGrid(m, [0, 0]));
const cellB = furthest(distanceGrid(m, cellA));
return opt.cShortest(m, { ...opt, start: cellA, end: cellB });
}