linkResultDirectedEdges method

void linkResultDirectedEdges()

Link the DirectedEdges at the nodes of the graph. This allows clients to link only a subset of nodes in the graph, for efficiency (because they know that only a subset is of interest).

Implementation

void linkResultDirectedEdges() {
  for (Iterator nodeit = nodes.iterator(); nodeit.moveNext();) {
    Node node = nodeit.current as Node;
    (node.getEdges() as DirectedEdgeStar).linkResultDirectedEdges();
  }
}