コード例 #1
0
ファイル: testModelManual.cs プロジェクト: tmaierhofer/grgen
        public static Edge_connection CreateEdge(LGSPGraph graph, LGSPNode source, LGSPNode target)
        {
            Edge_connection edge = new Edge_connection(source, target);

            graph.AddEdge(edge);
            return(edge);
        }
コード例 #2
0
ファイル: testModelManual.cs プロジェクト: jblomer/GrGen.NET
 public static Edge_connection CreateEdge(LGSPGraph graph, LGSPNode source, LGSPNode target)
 {
     Edge_connection edge = new Edge_connection(source, target);
     graph.AddEdge(edge);
     return edge;
 }