コード例 #1
0
ファイル: Graph.cs プロジェクト: DVitinnik/UniversityApps
 public Graph()
 {
     this.Edges = new List<Edge>();
     this.Vertices = new List<Vertex>();
     this.HeuristicData = new HeuristicData();
 }
コード例 #2
0
 public Graph()
 {
     this.Edges         = new List <Edge>();
     this.Vertices      = new List <Vertex>();
     this.HeuristicData = new HeuristicData();
 }