MCPcopy Create free account
hub / github.com/Kitware/CMake / Compute

Method Compute

Source/cmComputeComponentGraph.cxx:20–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18cmComputeComponentGraph::~cmComputeComponentGraph() = default;
19
20void cmComputeComponentGraph::Compute()
21{
22 // Identify components.
23 this->Tarjan();
24
25 // Compute the component graph.
26 this->ComponentGraph.resize(0);
27 this->ComponentGraph.resize(this->Components.size());
28 this->TransferEdges();
29}
30
31void cmComputeComponentGraph::Tarjan()
32{

Callers

nothing calls this directly

Calls 4

TarjanMethod · 0.95
TransferEdgesMethod · 0.95
resizeMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected