Changed algorithm order

This commit is contained in:
Unick Soft
2019-01-03 14:05:06 +02:00
parent d282e24590
commit db6167921e
12 changed files with 20 additions and 10 deletions

View File

@@ -140,6 +140,11 @@ MinimumSpanningTree.prototype.getObjectSelectedGroup = function(object)
(object instanceof BaseVertex || this.edges.indexOf(object) >= 0) ? 1 : 0;
}
MinimumSpanningTree.prototype.getPriority = function()
{
return -9.5;
}
// Factory for algorithm.
function CreateMinimumSpanningTree(graph, app)