You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rationale: Since an MST is guaranteed the minimum network required to connect all nodes, why not start with that and prune edges/paths if the two-way budget criteria is not met by any 2 end-nodes of a path including that edge? This way, we work back from what's known to be optimal. It would resolve the following case more elegantly:
modKruskal/modBoruvka:
new backtrack approach:
It may also be faster and simpler to rationalize.
The text was updated successfully, but these errors were encountered:
Rationale: Since an MST is guaranteed the minimum network required to connect all nodes, why not start with that and prune edges/paths if the two-way budget criteria is not met by any 2 end-nodes of a path including that edge? This way, we work back from what's known to be optimal. It would resolve the following case more elegantly:
modKruskal/modBoruvka:
new backtrack approach:
It may also be faster and simpler to rationalize.
The text was updated successfully, but these errors were encountered: