Example #1
0
        public static Edge_connection CreateEdge(LGSPGraph graph, LGSPNode source, LGSPNode target)
        {
            Edge_connection edge = new Edge_connection(source, target);

            graph.AddEdge(edge);
            return(edge);
        }
Example #2
0
 public static Edge_connection CreateEdge(LGSPGraph graph, LGSPNode source, LGSPNode target)
 {
     Edge_connection edge = new Edge_connection(source, target);
     graph.AddEdge(edge);
     return edge;
 }