ancestryOfAll

fun ancestryOfAll(seeds: Collection<Vertex>): Graph<Vertex>

Create a subgraph containing each of the provided vertices and all of their ancestors.

Note: Don't use parallelVisitThen, because the graph may contain cycles that we're interested in rendering (i.e., to determine how to break them).

Return

The specified subgraph of the receiver.

Parameters

seeds

The vertices whose ancestors to include.