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