public AbstractGraphEdge NewEdge(AbstractGraphNode from, AbstractGraphNode to, string rtype)
 {
     return(graphBackend.NewEdge(from, to, rtype));
 }
Beispiel #2
0
 public AbstractGraphEdge NewEdge(AbstractGraphNode from, AbstractGraphNode to)
 {
     return(graphBackend.NewEdge(from, to));
 }