1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmComputeComponentGraph.h,v $
6 Date: $Date: 2008-02-07 21:14:05 $
7 Version: $Revision: 1.1 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #ifndef cmComputeComponentGraph_h
18 #define cmComputeComponentGraph_h
20 #include "cmStandardIncludes.h"
22 #include "cmGraphAdjacencyList.h"
26 /** \class cmComputeComponentGraph
27 * \brief Analyze a graph to determine strongly connected components.
29 * Convert a directed graph into a directed acyclic graph whose nodes
30 * correspond to strongly connected components of the original graph.
32 * We use Tarjan's algorithm to enumerate the components efficiently.
33 * An advantage of this approach is that the components are identified
34 * in a topologically sorted order.
36 class cmComputeComponentGraph
39 // Represent the graph with an adjacency list.
40 typedef cmGraphNodeList NodeList
;
41 typedef cmGraphAdjacencyList Graph
;
43 cmComputeComponentGraph(Graph
const& input
);
44 ~cmComputeComponentGraph();
46 /** Get the adjacency list of the component graph. */
47 Graph
const& GetComponentGraph() const
48 { return this->ComponentGraph
; }
49 NodeList
const& GetComponentGraphEdges(int c
) const
50 { return this->ComponentGraph
[c
]; }
52 /** Get map from component index to original node indices. */
53 std::vector
<NodeList
> const& GetComponents() const
54 { return this->Components
; }
55 NodeList
const& GetComponent(int c
) const
56 { return this->Components
[c
]; }
58 /** Get map from original node index to component index. */
59 std::vector
<int> const& GetComponentMap() const
60 { return this->TarjanComponents
; }
65 Graph
const& InputGraph
;
68 // Tarjan's algorithm.
75 std::vector
<int> TarjanVisited
;
76 std::vector
<int> TarjanComponents
;
77 std::vector
<TarjanEntry
> TarjanEntries
;
78 std::stack
<int> TarjanStack
;
81 void TarjanVisit(int i
);
83 // Connected components.
84 std::vector
<NodeList
> Components
;