public DepthFirstSearch(TypeOfGraph typeOfGrpah)
 {
     IsThereACycle = false;
     Visited       = new Dictionary <Vertex <T>, Vertex <T> >();
     CycleChecker  = new Dictionary <Vertex <T>, bool>();
     GraphType     = typeOfGrpah;
 }
Example #2
0
 public ChartStats(string ip, TypeOfGraph type) : this()
 {
     currType = type;
     this.ip  = ip;
 }