Added distance matrix

This commit is contained in:
Unick Soft
2018-06-21 23:02:23 +03:00
parent 948002209e
commit d759a19728
4 changed files with 89 additions and 2 deletions

View File

@@ -515,6 +515,11 @@ Application.prototype.SetHandlerMode = function(mode)
var showIncidenceMatrix = new ShowIncidenceMatrix(this);
showIncidenceMatrix.show();
}
else if (mode == "showDistanceMatrix")
{
var showDistanceMatrix = new ShowDistanceMatrix(this);
showDistanceMatrix.show();
}
else if (mode == "connectedComponent")
{
this.handler = new ConnectedComponentGraphHandler(this);