Exemple #1
0
 public void AddAndRemoveOnFsm()
 {
     this.target = new ReversedEdgeAugmentorAlgorithm(GraphFactory.Fsm());
     this.target.AddReversedEdges();
     this.VerifyReversedEdges();
     this.target.RemoveReversedEdges();
 }
        public void Fsm()
        {
            IVertexListGraph          g      = GraphFactory.Fsm();
            StrongComponentsAlgorithm strong = new StrongComponentsAlgorithm(g);

            strong.Compute();
            checkStrong(strong);
        }