A call graph is a dataflow graph where all vertices are function calls. You can create a call graph from a dataflow graph using computeCallGraph. If you want to extract a sub call graph, use getSubCallGraph.
dropTransitiveEdges - to reduce the call graph by dropping transitive edges
A call graph is a dataflow graph where all vertices are function calls. You can create a call graph from a dataflow graph using computeCallGraph. If you want to extract a sub call graph, use getSubCallGraph.