Package classycle.graph

Examples of classycle.graph.StrongComponentAnalyser


  {
    long time = System.currentTimeMillis();
    AtomicVertex[] classGraph = Parser.readClassFiles(_classFiles, _pattern,
                                                      _reflectionPattern,
                                                      _mergeInnerClasses);
    _classAnalyser = new StrongComponentAnalyser(classGraph);
    return System.currentTimeMillis() - time;
  }
View Full Code Here


  {
    checkClassGraph("createPackageGraph()");
    long time = System.currentTimeMillis();
    PackageProcessor processor = new PackageProcessor();
    processor.deepSearchFirst(_classAnalyser.getGraph());
    _packageAnalyser = new StrongComponentAnalyser(processor.getGraph());
    return System.currentTimeMillis() - time;
  }
View Full Code Here

    {
      PackageProcessor processor = new PackageProcessor();
      processor.deepSearchFirst(graph);
      graph = processor.getGraph();
    }
    StrongComponentAnalyser analyser = new StrongComponentAnalyser(graph);
    Vertex[] condensedGraph = analyser.getCondensedGraph();
    CyclesResult result = new CyclesResult(createStatement(), _packageCycles);
    for (int i = 0; i < condensedGraph.length; i++)
    {
      StrongComponent strongComponent = (StrongComponent) condensedGraph[i];
      if (strongComponent.getNumberOfVertices() > _maximumSize)
View Full Code Here

TOP

Related Classes of classycle.graph.StrongComponentAnalyser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.