Ejemplo n.º 1
0
 public ImplicitEdgeEnumerator(ImplicitGraph graph, IVertex vertex)
 {
     this.vertex      = vertex;
     this.transitions = graph.Transitions(vertex).GetEnumerator();
 }
 public ImplicitEdgeEnumerable(ImplicitGraph graph, IVertex vertex)
 {
     this.graph = graph;
     this.vertex = vertex;
 }
Ejemplo n.º 3
0
 public ImplicitEdgeEnumerable(ImplicitGraph graph, IVertex vertex)
 {
     this.graph  = graph;
     this.vertex = vertex;
 }
 public ImplicitEdgeEnumerator(ImplicitGraph graph, IVertex vertex)
 {
     this.vertex = vertex;
     this.transitions = graph.Transitions(vertex).GetEnumerator();
 }