コード例 #1
0
        public VertexStatCollection(int nodeID, String nodeName, DFTNodeType type, VertexStats initialStats, int initialTime)
        {
            this.nodeID   = nodeID;
            this.nodeName = nodeName;
            this.type     = type;

            stats = new Dictionary <int, VertexStats>();
            stats.Add(initialTime, initialStats);
        }
コード例 #2
0
 public static DFTGraph getReachableGraphBWD(DFTGraph g, DFTNode n, DFTNodeType type)
 {
     return(g.getReachabilityGraphBWD(n, false, type));
 }