| Class | Description |
|---|---|
| EvoSuiteGraph<V,E extends org.jgrapht.graph.DefaultEdge> |
Supposed to become the super class of all kinds of graphs used within
EvoSuite Examples are the raw and minimal Control Flow Graph and hopefully at
one point the Control Dependency Tree
This class is supposed to hide the jGraph library from the rest of EvoSuite
and is supposed to serve as an interface for all kinds of primitive graph-
functionality such as asking for information about the nodes and edges of the
graph and the relations between them.
|
| FloydWarshall<V,E> |
The
Floyd-Warshall algorithm finds all shortest paths (all n^2 of them) in
O(n^3) time.
|
| GraphPool |
Gives access to all Graphs computed during CUT analysis such as CFGs created
by the CFGGenerator and BytcodeAnalyzer in the CFGMethodAdapter
For each CUT and each of their methods a Raw- and an ActualControlFlowGraph
instance are stored within this pool.
|
Copyright © 2010–2017 EvoSuite. All rights reserved.