internal void AddIngoingEdge(GraphEdge edge)
 {
     _inE.Add(edge);
 }
 internal void AddOutgoingEdge(GraphEdge edge)
 {
     _outE.Add(edge);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Copy ingoing and outgoing node relationships from this edge to another edge
 /// </summary>
 /// <param name="copyTo"></param>
 public void CopyNodeRelationshipsTo(GraphEdge copyTo)
 {
     copyTo._inV  = this._inV;
     copyTo._outV = this._outV;
 }