コード例 #1
0
ファイル: NetworkConnection.cs プロジェクト: admsbk/tsst2
 public STM(int id, Topology.Node source, Topology.Node target, string sourcePort, string targetPort, int sourceVpi, int targetVpi, int capacity, string name)
     : base(source, target, sourcePort, targetPort, capacity, name)
 {
     this.Id         = id;
     this.SourceSlot = sourceVpi;
     this.TargetSlot = targetVpi;
     this.Path       = new List <LinkConnection>();
 }
コード例 #2
0
ファイル: RoutingGraph.cs プロジェクト: admsbk/tsst2
 public Node(Topology.Node node)
 {
     tNode = node;
 }