Пример #1
0
 public GraphAdapter(SccLoopFinder slf)
 {
     this.slf = slf;
 }
Пример #2
0
        public HashSet <StructureNode> FindNodesInLoop(HashSet <StructureNode> intNodes)
        {
            var finder = new SccLoopFinder(header.Interval, intNodes);

            return(finder.FindLoop());
        }