transitive_closure.hpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. // Copyright (C) 2001 Vladimir Prus <ghost@cs.msu.su>
  2. // Copyright (C) 2001 Jeremy Siek <jsiek@cs.indiana.edu>
  3. // Distributed under the Boost Software License, Version 1.0. (See
  4. // accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. // NOTE: this final is generated by libs/graph/doc/transitive_closure.w
  7. #ifndef BOOST_GRAPH_TRANSITIVE_CLOSURE_HPP
  8. #define BOOST_GRAPH_TRANSITIVE_CLOSURE_HPP
  9. #include <vector>
  10. #include <algorithm> // for std::min and std::max
  11. #include <functional>
  12. #include <boost/config.hpp>
  13. #include <boost/bind.hpp>
  14. #include <boost/graph/strong_components.hpp>
  15. #include <boost/graph/topological_sort.hpp>
  16. #include <boost/graph/graph_concepts.hpp>
  17. #include <boost/graph/named_function_params.hpp>
  18. #include <boost/graph/adjacency_list.hpp>
  19. #include <boost/concept/assert.hpp>
  20. namespace boost
  21. {
  22. namespace detail
  23. {
  24. inline void
  25. union_successor_sets(const std::vector < std::size_t > &s1,
  26. const std::vector < std::size_t > &s2,
  27. std::vector < std::size_t > &s3)
  28. {
  29. BOOST_USING_STD_MIN();
  30. for (std::size_t k = 0; k < s1.size(); ++k)
  31. s3[k] = min BOOST_PREVENT_MACRO_SUBSTITUTION(s1[k], s2[k]);
  32. }
  33. } // namespace detail
  34. namespace detail
  35. {
  36. template < typename TheContainer, typename ST = std::size_t,
  37. typename VT = typename TheContainer::value_type >
  38. struct subscript_t:public std::unary_function < ST, VT >
  39. {
  40. typedef VT& result_type;
  41. subscript_t(TheContainer & c):container(&c)
  42. {
  43. }
  44. VT & operator() (const ST & i) const
  45. {
  46. return (*container)[i];
  47. }
  48. protected:
  49. TheContainer * container;
  50. };
  51. template < typename TheContainer >
  52. subscript_t < TheContainer > subscript(TheContainer & c) {
  53. return subscript_t < TheContainer > (c);
  54. }
  55. } // namespace detail
  56. template < typename Graph, typename GraphTC,
  57. typename G_to_TC_VertexMap,
  58. typename VertexIndexMap >
  59. void transitive_closure(const Graph & g, GraphTC & tc,
  60. G_to_TC_VertexMap g_to_tc_map,
  61. VertexIndexMap index_map)
  62. {
  63. if (num_vertices(g) == 0)
  64. return;
  65. typedef typename graph_traits < Graph >::vertex_descriptor vertex;
  66. typedef typename graph_traits < Graph >::vertex_iterator vertex_iterator;
  67. typedef typename property_traits < VertexIndexMap >::value_type size_type;
  68. typedef typename graph_traits <
  69. Graph >::adjacency_iterator adjacency_iterator;
  70. BOOST_CONCEPT_ASSERT(( VertexListGraphConcept < Graph > ));
  71. BOOST_CONCEPT_ASSERT(( AdjacencyGraphConcept < Graph > ));
  72. BOOST_CONCEPT_ASSERT(( VertexMutableGraphConcept < GraphTC > ));
  73. BOOST_CONCEPT_ASSERT(( EdgeMutableGraphConcept < GraphTC > ));
  74. BOOST_CONCEPT_ASSERT(( ReadablePropertyMapConcept < VertexIndexMap,
  75. vertex > ));
  76. typedef size_type cg_vertex;
  77. std::vector < cg_vertex > component_number_vec(num_vertices(g));
  78. iterator_property_map < cg_vertex *, VertexIndexMap, cg_vertex, cg_vertex& >
  79. component_number(&component_number_vec[0], index_map);
  80. int num_scc = strong_components(g, component_number,
  81. vertex_index_map(index_map));
  82. std::vector < std::vector < vertex > >components;
  83. build_component_lists(g, num_scc, component_number, components);
  84. typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::directedS> CG_t;
  85. CG_t CG(num_scc);
  86. for (cg_vertex s = 0; s < components.size(); ++s) {
  87. std::vector < cg_vertex > adj;
  88. for (size_type i = 0; i < components[s].size(); ++i) {
  89. vertex u = components[s][i];
  90. adjacency_iterator v, v_end;
  91. for (boost::tie(v, v_end) = adjacent_vertices(u, g); v != v_end; ++v) {
  92. cg_vertex t = component_number[*v];
  93. if (s != t) // Avoid loops in the condensation graph
  94. adj.push_back(t);
  95. }
  96. }
  97. std::sort(adj.begin(), adj.end());
  98. typename std::vector<cg_vertex>::iterator di =
  99. std::unique(adj.begin(), adj.end());
  100. if (di != adj.end())
  101. adj.erase(di, adj.end());
  102. for (typename std::vector<cg_vertex>::const_iterator i = adj.begin();
  103. i != adj.end(); ++i) {
  104. add_edge(s, *i, CG);
  105. }
  106. }
  107. std::vector<cg_vertex> topo_order;
  108. std::vector<cg_vertex> topo_number(num_vertices(CG));
  109. topological_sort(CG, std::back_inserter(topo_order),
  110. vertex_index_map(identity_property_map()));
  111. std::reverse(topo_order.begin(), topo_order.end());
  112. size_type n = 0;
  113. for (typename std::vector<cg_vertex>::iterator iter = topo_order.begin();
  114. iter != topo_order.end(); ++iter)
  115. topo_number[*iter] = n++;
  116. std::vector<std::vector<cg_vertex> > CG_vec(num_vertices(CG));
  117. for (size_type i = 0; i < num_vertices(CG); ++i) {
  118. typedef typename boost::graph_traits<CG_t>::adjacency_iterator cg_adj_iter;
  119. std::pair<cg_adj_iter, cg_adj_iter> pr = adjacent_vertices(i, CG);
  120. CG_vec[i].assign(pr.first, pr.second);
  121. std::sort(CG_vec[i].begin(), CG_vec[i].end(),
  122. boost::bind(std::less<cg_vertex>(),
  123. boost::bind(detail::subscript(topo_number), _1),
  124. boost::bind(detail::subscript(topo_number), _2)));
  125. }
  126. std::vector<std::vector<cg_vertex> > chains;
  127. {
  128. std::vector<cg_vertex> in_a_chain(CG_vec.size());
  129. for (typename std::vector<cg_vertex>::iterator i = topo_order.begin();
  130. i != topo_order.end(); ++i) {
  131. cg_vertex v = *i;
  132. if (!in_a_chain[v]) {
  133. chains.resize(chains.size() + 1);
  134. std::vector<cg_vertex>& chain = chains.back();
  135. for (;;) {
  136. chain.push_back(v);
  137. in_a_chain[v] = true;
  138. typename std::vector<cg_vertex>::const_iterator next
  139. = std::find_if(CG_vec[v].begin(), CG_vec[v].end(),
  140. std::not1(detail::subscript(in_a_chain)));
  141. if (next != CG_vec[v].end())
  142. v = *next;
  143. else
  144. break; // end of chain, dead-end
  145. }
  146. }
  147. }
  148. }
  149. std::vector<size_type> chain_number(CG_vec.size());
  150. std::vector<size_type> pos_in_chain(CG_vec.size());
  151. for (size_type i = 0; i < chains.size(); ++i)
  152. for (size_type j = 0; j < chains[i].size(); ++j) {
  153. cg_vertex v = chains[i][j];
  154. chain_number[v] = i;
  155. pos_in_chain[v] = j;
  156. }
  157. cg_vertex inf = (std::numeric_limits< cg_vertex >::max)();
  158. std::vector<std::vector<cg_vertex> > successors(CG_vec.size(),
  159. std::vector<cg_vertex>
  160. (chains.size(), inf));
  161. for (typename std::vector<cg_vertex>::reverse_iterator
  162. i = topo_order.rbegin(); i != topo_order.rend(); ++i) {
  163. cg_vertex u = *i;
  164. typename std::vector<cg_vertex>::const_iterator adj, adj_last;
  165. for (adj = CG_vec[u].begin(), adj_last = CG_vec[u].end();
  166. adj != adj_last; ++adj) {
  167. cg_vertex v = *adj;
  168. if (topo_number[v] < successors[u][chain_number[v]]) {
  169. // Succ(u) = Succ(u) U Succ(v)
  170. detail::union_successor_sets(successors[u], successors[v],
  171. successors[u]);
  172. // Succ(u) = Succ(u) U {v}
  173. successors[u][chain_number[v]] = topo_number[v];
  174. }
  175. }
  176. }
  177. for (size_type i = 0; i < CG_vec.size(); ++i)
  178. CG_vec[i].clear();
  179. for (size_type i = 0; i < CG_vec.size(); ++i)
  180. for (size_type j = 0; j < chains.size(); ++j) {
  181. size_type topo_num = successors[i][j];
  182. if (topo_num < inf) {
  183. cg_vertex v = topo_order[topo_num];
  184. for (size_type k = pos_in_chain[v]; k < chains[j].size(); ++k)
  185. CG_vec[i].push_back(chains[j][k]);
  186. }
  187. }
  188. // Add vertices to the transitive closure graph
  189. {
  190. vertex_iterator i, i_end;
  191. for (boost::tie(i, i_end) = vertices(g); i != i_end; ++i)
  192. g_to_tc_map[*i] = add_vertex(tc);
  193. }
  194. // Add edges between all the vertices in two adjacent SCCs
  195. typename std::vector<std::vector<cg_vertex> >::const_iterator si, si_end;
  196. for (si = CG_vec.begin(), si_end = CG_vec.end(); si != si_end; ++si) {
  197. cg_vertex s = si - CG_vec.begin();
  198. typename std::vector<cg_vertex>::const_iterator i, i_end;
  199. for (i = CG_vec[s].begin(), i_end = CG_vec[s].end(); i != i_end; ++i) {
  200. cg_vertex t = *i;
  201. for (size_type k = 0; k < components[s].size(); ++k)
  202. for (size_type l = 0; l < components[t].size(); ++l)
  203. add_edge(g_to_tc_map[components[s][k]],
  204. g_to_tc_map[components[t][l]], tc);
  205. }
  206. }
  207. // Add edges connecting all vertices in a SCC
  208. for (size_type i = 0; i < components.size(); ++i)
  209. if (components[i].size() > 1)
  210. for (size_type k = 0; k < components[i].size(); ++k)
  211. for (size_type l = 0; l < components[i].size(); ++l) {
  212. vertex u = components[i][k], v = components[i][l];
  213. add_edge(g_to_tc_map[u], g_to_tc_map[v], tc);
  214. }
  215. // Find loopbacks in the original graph.
  216. // Need to add it to transitive closure.
  217. {
  218. vertex_iterator i, i_end;
  219. for (boost::tie(i, i_end) = vertices(g); i != i_end; ++i)
  220. {
  221. adjacency_iterator ab, ae;
  222. for (boost::tie(ab, ae) = adjacent_vertices(*i, g); ab != ae; ++ab)
  223. {
  224. if (*ab == *i)
  225. if (components[component_number[*i]].size() == 1)
  226. add_edge(g_to_tc_map[*i], g_to_tc_map[*i], tc);
  227. }
  228. }
  229. }
  230. }
  231. template <typename Graph, typename GraphTC>
  232. void transitive_closure(const Graph & g, GraphTC & tc)
  233. {
  234. if (num_vertices(g) == 0)
  235. return;
  236. typedef typename property_map<Graph, vertex_index_t>::const_type
  237. VertexIndexMap;
  238. VertexIndexMap index_map = get(vertex_index, g);
  239. typedef typename graph_traits<GraphTC>::vertex_descriptor tc_vertex;
  240. std::vector<tc_vertex> to_tc_vec(num_vertices(g));
  241. iterator_property_map < tc_vertex *, VertexIndexMap, tc_vertex, tc_vertex&>
  242. g_to_tc_map(&to_tc_vec[0], index_map);
  243. transitive_closure(g, tc, g_to_tc_map, index_map);
  244. }
  245. namespace detail
  246. {
  247. template < typename Graph, typename GraphTC, typename G_to_TC_VertexMap,
  248. typename VertexIndexMap>
  249. void transitive_closure_dispatch
  250. (const Graph & g, GraphTC & tc,
  251. G_to_TC_VertexMap g_to_tc_map, VertexIndexMap index_map)
  252. {
  253. typedef typename graph_traits < GraphTC >::vertex_descriptor tc_vertex;
  254. typename std::vector < tc_vertex >::size_type
  255. n = is_default_param(g_to_tc_map) ? num_vertices(g) : 1;
  256. std::vector < tc_vertex > to_tc_vec(n);
  257. transitive_closure
  258. (g, tc,
  259. choose_param(g_to_tc_map, make_iterator_property_map
  260. (to_tc_vec.begin(), index_map, to_tc_vec[0])),
  261. index_map);
  262. }
  263. } // namespace detail
  264. template < typename Graph, typename GraphTC,
  265. typename P, typename T, typename R >
  266. void transitive_closure(const Graph & g, GraphTC & tc,
  267. const bgl_named_params < P, T, R > &params)
  268. {
  269. if (num_vertices(g) == 0)
  270. return;
  271. detail::transitive_closure_dispatch
  272. (g, tc, get_param(params, orig_to_copy_t()),
  273. choose_const_pmap(get_param(params, vertex_index), g, vertex_index) );
  274. }
  275. template < typename G > void warshall_transitive_closure(G & g)
  276. {
  277. typedef typename graph_traits < G >::vertex_iterator vertex_iterator;
  278. BOOST_CONCEPT_ASSERT(( AdjacencyMatrixConcept < G > ));
  279. BOOST_CONCEPT_ASSERT(( EdgeMutableGraphConcept < G > ));
  280. // Matrix form:
  281. // for k
  282. // for i
  283. // if A[i,k]
  284. // for j
  285. // A[i,j] = A[i,j] | A[k,j]
  286. vertex_iterator ki, ke, ii, ie, ji, je;
  287. for (boost::tie(ki, ke) = vertices(g); ki != ke; ++ki)
  288. for (boost::tie(ii, ie) = vertices(g); ii != ie; ++ii)
  289. if (edge(*ii, *ki, g).second)
  290. for (boost::tie(ji, je) = vertices(g); ji != je; ++ji)
  291. if (!edge(*ii, *ji, g).second && edge(*ki, *ji, g).second) {
  292. add_edge(*ii, *ji, g);
  293. }
  294. }
  295. template < typename G > void warren_transitive_closure(G & g)
  296. {
  297. using namespace boost;
  298. typedef typename graph_traits < G >::vertex_iterator vertex_iterator;
  299. BOOST_CONCEPT_ASSERT(( AdjacencyMatrixConcept < G > ));
  300. BOOST_CONCEPT_ASSERT(( EdgeMutableGraphConcept < G > ));
  301. // Make sure second loop will work
  302. if (num_vertices(g) == 0)
  303. return;
  304. // for i = 2 to n
  305. // for k = 1 to i - 1
  306. // if A[i,k]
  307. // for j = 1 to n
  308. // A[i,j] = A[i,j] | A[k,j]
  309. vertex_iterator ic, ie, jc, je, kc, ke;
  310. for (boost::tie(ic, ie) = vertices(g), ++ic; ic != ie; ++ic)
  311. for (boost::tie(kc, ke) = vertices(g); *kc != *ic; ++kc)
  312. if (edge(*ic, *kc, g).second)
  313. for (boost::tie(jc, je) = vertices(g); jc != je; ++jc)
  314. if (!edge(*ic, *jc, g).second && edge(*kc, *jc, g).second) {
  315. add_edge(*ic, *jc, g);
  316. }
  317. // for i = 1 to n - 1
  318. // for k = i + 1 to n
  319. // if A[i,k]
  320. // for j = 1 to n
  321. // A[i,j] = A[i,j] | A[k,j]
  322. for (boost::tie(ic, ie) = vertices(g), --ie; ic != ie; ++ic)
  323. for (kc = ic, ke = ie, ++kc; kc != ke; ++kc)
  324. if (edge(*ic, *kc, g).second)
  325. for (boost::tie(jc, je) = vertices(g); jc != je; ++jc)
  326. if (!edge(*ic, *jc, g).second && edge(*kc, *jc, g).second) {
  327. add_edge(*ic, *jc, g);
  328. }
  329. }
  330. } // namespace boost
  331. #endif // BOOST_GRAPH_TRANSITIVE_CLOSURE_HPP