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
Copy file name to clipboardExpand all lines: doc/modules/ROOT/pages/algorithms/directed-steiner-tree.adoc
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -415,7 +415,11 @@ It is also possible to try and augment the solution discovered by the heuristic
415
415
This option can be enabled by setting `applyRerouting:true` in the configuration.
416
416
417
417
The rerouting phase re-examines the relationships in the discovered steiner tree and tries to reroute nodes (that is change their parent with another node in the tree) so as to decrease the cost.
418
-
The rerouting phase might even have as an effect that some nodes are removed for a tree.
418
+
After the rerouting phase some nodes might end up being childless, that is not part of any path between the source and a target.
419
+
Such nodes are then removed from the returned solution.
420
+
421
+
Note that there is no guarantee that enabling rerouting will always lead to an improvement in quality.
0 commit comments