Don't include self in tomography

This commit is contained in:
Ross McFarland 2016-05-15 06:13:52 -07:00
parent ba3c4fc3e3
commit 8a9fe0239d
1 changed files with 5 additions and 4 deletions

View File

@ -289,10 +289,11 @@ App.NodesShowRoute = App.BaseRoute.extend({
dc.coordinates.forEach(function (node) {
if (params.name == node.Node) {
dc.coordinates.forEach(function (other) {
// TODO: ignore self
if (node.Node != other.Node) {
var dist = distance(node, other);
distances.push(dist);
sum += dist;
}
});
distances.sort();
}