Example #1
0
 public SuccessorEdgeEnumerator(GraphAdjList <NODE, EDGE> g, NODE n)
 {
     graph = g;
     node  = n;
 }
Example #2
0
 public ReverseSuccessorEnumerator(GraphAdjList <NODE, EDGE> g, NODE n)
 {
     graph = g;
     node  = n;
 }
Example #3
0
 public PredecessorEnumerator(GraphAdjList <NODE, EDGE> g, NODE n)
 {
     graph = g;
     node  = n;
 }