Synopsis Determine the graph nodes reachable from a set of nodes.
Function set[&T] reach(Graph[&T] G, set[&T] Start)
Usage import analysis::graphs::Graph;
Description Returns the set of nodes in Graph G
that are reachable from any of the nodes
in the set Start
.