public void AddAndRemoveOnFileDependency() { this.target = new ReversedEdgeAugmentorAlgorithm(GraphFactory.FileDependency()); this.target.AddReversedEdges(); this.VerifyReversedEdges(); this.target.RemoveReversedEdges(); }
public void FileDependency() { IVertexListGraph g = GraphFactory.FileDependency(); StrongComponentsAlgorithm strong = new StrongComponentsAlgorithm(g); strong.Compute(); checkStrong(strong); }
public void FileDependency() { AdjacencyGraph <string, Edge <string> > g = new AdjacencyGraph <string, Edge <string> >(); GraphFactory.FileDependency(g); this.Compute(g); this.ComputeCriticalPath(g); }