| 18 | cmComputeComponentGraph::~cmComputeComponentGraph() = default; |
| 19 | |
| 20 | void 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 | |
| 31 | void cmComputeComponentGraph::Tarjan() |
| 32 | { |
nothing calls this directly
no test coverage detected