Don't include self in tomography
This commit is contained in:
parent
ba3c4fc3e3
commit
8a9fe0239d
|
@ -289,10 +289,11 @@ App.NodesShowRoute = App.BaseRoute.extend({
|
||||||
dc.coordinates.forEach(function (node) {
|
dc.coordinates.forEach(function (node) {
|
||||||
if (params.name == node.Node) {
|
if (params.name == node.Node) {
|
||||||
dc.coordinates.forEach(function (other) {
|
dc.coordinates.forEach(function (other) {
|
||||||
// TODO: ignore self
|
if (node.Node != other.Node) {
|
||||||
var dist = distance(node, other);
|
var dist = distance(node, other);
|
||||||
distances.push(dist);
|
distances.push(dist);
|
||||||
sum += dist;
|
sum += dist;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
distances.sort();
|
distances.sort();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue