internal ActivityGraphNodeState(GraphNodeState state)
 {
     State = state;
 }
예제 #2
0
 public GraphNode(T data) : base(data)
 {
     this.Adjacent = new Collection <GraphNode <T> >();
     this.State    = GraphNodeState.Unvisited;
 }