sloan_ordering.hpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. //
  2. //=======================================================================
  3. // Copyright 2002 Marc Wintermantel (wintermantel@even-ag.ch)
  4. // ETH Zurich, Center of Structure Technologies (www.imes.ethz.ch/st)
  5. //
  6. // Distributed under the Boost Software License, Version 1.0. (See
  7. // accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //=======================================================================
  10. //
  11. #ifndef BOOST_GRAPH_SLOAN_HPP
  12. #define BOOST_GRAPH_SLOAN_HPP
  13. #define WEIGHT1 1 //default weight for the distance in the Sloan algorithm
  14. #define WEIGHT2 2 //default weight for the degree in the Sloan algorithm
  15. #include <boost/config.hpp>
  16. #include <vector>
  17. #include <queue>
  18. #include <algorithm>
  19. #include <limits>
  20. #include <boost/pending/queue.hpp>
  21. #include <boost/graph/graph_traits.hpp>
  22. #include <boost/graph/breadth_first_search.hpp>
  23. #include <boost/graph/properties.hpp>
  24. #include <boost/pending/indirect_cmp.hpp>
  25. #include <boost/property_map/property_map.hpp>
  26. #include <boost/graph/visitors.hpp>
  27. #include <boost/graph/adjacency_list.hpp>
  28. #include <boost/graph/cuthill_mckee_ordering.hpp>
  29. ////////////////////////////////////////////////////////////
  30. //
  31. //Sloan-Algorithm for graph reordering
  32. //(optimzes profile and wavefront, not primiraly bandwidth
  33. //
  34. ////////////////////////////////////////////////////////////
  35. namespace boost {
  36. /////////////////////////////////////////////////////////////////////////
  37. // Function that returns the maximum depth of
  38. // a rooted level strucutre (RLS)
  39. //
  40. /////////////////////////////////////////////////////////////////////////
  41. template<class Distance>
  42. typename Distance::value_type RLS_depth(Distance& d)
  43. {
  44. typename Distance::value_type h_s = 0;
  45. typename Distance::iterator iter;
  46. for (iter = d.begin(); iter != d.end(); ++iter)
  47. {
  48. if(*iter > h_s)
  49. {
  50. h_s = *iter;
  51. }
  52. }
  53. return h_s;
  54. }
  55. /////////////////////////////////////////////////////////////////////////
  56. // Function that returns the width of the largest level of
  57. // a rooted level strucutre (RLS)
  58. //
  59. /////////////////////////////////////////////////////////////////////////
  60. template<class Distance, class my_int>
  61. typename Distance::value_type RLS_max_width(Distance& d, my_int depth)
  62. {
  63. typedef typename Distance::value_type Degree;
  64. //Searching for the maximum width of a level
  65. std::vector<Degree> dummy_width(depth+1, 0);
  66. typename std::vector<Degree>::iterator my_it;
  67. typename Distance::iterator iter;
  68. Degree w_max = 0;
  69. for (iter = d.begin(); iter != d.end(); ++iter)
  70. {
  71. dummy_width[*iter]++;
  72. }
  73. for(my_it = dummy_width.begin(); my_it != dummy_width.end(); ++my_it)
  74. {
  75. if(*my_it > w_max) w_max = *my_it;
  76. }
  77. return w_max;
  78. }
  79. /////////////////////////////////////////////////////////////////////////
  80. // Function for finding a good starting node for Sloan algorithm
  81. //
  82. // This is to find a good starting node. "good" is in the sense
  83. // of the ordering generated.
  84. /////////////////////////////////////////////////////////////////////////
  85. template <class Graph, class ColorMap, class DegreeMap>
  86. typename graph_traits<Graph>::vertex_descriptor
  87. sloan_start_end_vertices(Graph& G,
  88. typename graph_traits<Graph>::vertex_descriptor &s,
  89. ColorMap color,
  90. DegreeMap degree)
  91. {
  92. typedef typename property_traits<DegreeMap>::value_type Degree;
  93. typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
  94. typedef typename std::vector< typename graph_traits<Graph>::vertices_size_type>::iterator vec_iter;
  95. typedef typename graph_traits<Graph>::vertices_size_type size_type;
  96. typedef typename property_map<Graph, vertex_index_t>::const_type VertexID;
  97. s = *(vertices(G).first);
  98. Vertex e = s;
  99. Vertex i;
  100. Degree my_degree = get(degree, s );
  101. Degree dummy, h_i, h_s, w_i, w_e;
  102. bool new_start = true;
  103. Degree maximum_degree = 0;
  104. //Creating a std-vector for storing the distance from the start vertex in dist
  105. std::vector<typename graph_traits<Graph>::vertices_size_type> dist(num_vertices(G), 0);
  106. //Wrap a property_map_iterator around the std::iterator
  107. boost::iterator_property_map<vec_iter, VertexID, size_type, size_type&> dist_pmap(dist.begin(), get(vertex_index, G));
  108. //Creating a property_map for the indices of a vertex
  109. typename property_map<Graph, vertex_index_t>::type index_map = get(vertex_index, G);
  110. //Creating a priority queue
  111. typedef indirect_cmp<DegreeMap, std::greater<Degree> > Compare;
  112. Compare comp(degree);
  113. std::priority_queue<Vertex, std::vector<Vertex>, Compare> degree_queue(comp);
  114. //step 1
  115. //Scan for the vertex with the smallest degree and the maximum degree
  116. typename graph_traits<Graph>::vertex_iterator ui, ui_end;
  117. for (boost::tie(ui, ui_end) = vertices(G); ui != ui_end; ++ui)
  118. {
  119. dummy = get(degree, *ui);
  120. if(dummy < my_degree)
  121. {
  122. my_degree = dummy;
  123. s = *ui;
  124. }
  125. if(dummy > maximum_degree)
  126. {
  127. maximum_degree = dummy;
  128. }
  129. }
  130. //end 1
  131. do{
  132. new_start = false; //Setting the loop repetition status to false
  133. //step 2
  134. //initialize the the disance std-vector with 0
  135. for(typename std::vector<typename graph_traits<Graph>::vertices_size_type>::iterator iter = dist.begin(); iter != dist.end(); ++iter) *iter = 0;
  136. //generating the RLS (rooted level structure)
  137. breadth_first_search
  138. (G, s, visitor
  139. (
  140. make_bfs_visitor(record_distances(dist_pmap, on_tree_edge() ) )
  141. )
  142. );
  143. //end 2
  144. //step 3
  145. //calculating the depth of the RLS
  146. h_s = RLS_depth(dist);
  147. //step 4
  148. //pushing one node of each degree in an ascending manner into degree_queue
  149. std::vector<bool> shrink_trace(maximum_degree, false);
  150. for (boost::tie(ui, ui_end) = vertices(G); ui != ui_end; ++ui)
  151. {
  152. dummy = get(degree, *ui);
  153. if( (dist[index_map[*ui]] == h_s ) && ( !shrink_trace[ dummy ] ) )
  154. {
  155. degree_queue.push(*ui);
  156. shrink_trace[ dummy ] = true;
  157. }
  158. }
  159. //end 3 & 4
  160. // step 5
  161. // Initializing w
  162. w_e = (std::numeric_limits<Degree>::max)();
  163. //end 5
  164. //step 6
  165. //Testing for termination
  166. while( !degree_queue.empty() )
  167. {
  168. i = degree_queue.top(); //getting the node with the lowest degree from the degree queue
  169. degree_queue.pop(); //ereasing the node with the lowest degree from the degree queue
  170. //generating a RLS
  171. for(typename std::vector<typename graph_traits<Graph>::vertices_size_type>::iterator iter = dist.begin(); iter != dist.end(); ++iter) *iter = 0;
  172. breadth_first_search
  173. (G, i, boost::visitor
  174. (
  175. make_bfs_visitor(record_distances(dist_pmap, on_tree_edge() ) )
  176. )
  177. );
  178. //Calculating depth and width of the rooted level
  179. h_i = RLS_depth(dist);
  180. w_i = RLS_max_width(dist, h_i);
  181. //Testing for termination
  182. if( (h_i > h_s) && (w_i < w_e) )
  183. {
  184. h_s = h_i;
  185. s = i;
  186. while(!degree_queue.empty()) degree_queue.pop();
  187. new_start = true;
  188. }
  189. else if(w_i < w_e)
  190. {
  191. w_e = w_i;
  192. e = i;
  193. }
  194. }
  195. //end 6
  196. }while(new_start);
  197. return e;
  198. }
  199. //////////////////////////////////////////////////////////////////////////
  200. // Sloan algorithm with a given starting Vertex.
  201. //
  202. // This algorithm requires user to provide a starting vertex to
  203. // compute Sloan ordering.
  204. //////////////////////////////////////////////////////////////////////////
  205. template <class Graph, class OutputIterator,
  206. class ColorMap, class DegreeMap,
  207. class PriorityMap, class Weight>
  208. OutputIterator
  209. sloan_ordering(Graph& g,
  210. typename graph_traits<Graph>::vertex_descriptor s,
  211. typename graph_traits<Graph>::vertex_descriptor e,
  212. OutputIterator permutation,
  213. ColorMap color,
  214. DegreeMap degree,
  215. PriorityMap priority,
  216. Weight W1,
  217. Weight W2)
  218. {
  219. //typedef typename property_traits<DegreeMap>::value_type Degree;
  220. typedef typename property_traits<PriorityMap>::value_type Degree;
  221. typedef typename property_traits<ColorMap>::value_type ColorValue;
  222. typedef color_traits<ColorValue> Color;
  223. typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
  224. typedef typename std::vector<typename graph_traits<Graph>::vertices_size_type>::iterator vec_iter;
  225. typedef typename graph_traits<Graph>::vertices_size_type size_type;
  226. typedef typename property_map<Graph, vertex_index_t>::const_type VertexID;
  227. //Creating a std-vector for storing the distance from the end vertex in it
  228. typename std::vector<typename graph_traits<Graph>::vertices_size_type> dist(num_vertices(g), 0);
  229. //Wrap a property_map_iterator around the std::iterator
  230. boost::iterator_property_map<vec_iter, VertexID, size_type, size_type&> dist_pmap(dist.begin(), get(vertex_index, g));
  231. breadth_first_search
  232. (g, e, visitor
  233. (
  234. make_bfs_visitor(record_distances(dist_pmap, on_tree_edge() ) )
  235. )
  236. );
  237. //Creating a property_map for the indices of a vertex
  238. typename property_map<Graph, vertex_index_t>::type index_map = get(vertex_index, g);
  239. //Sets the color and priority to their initial status
  240. Degree cdeg;
  241. typename graph_traits<Graph>::vertex_iterator ui, ui_end;
  242. for (boost::tie(ui, ui_end) = vertices(g); ui != ui_end; ++ui)
  243. {
  244. put(color, *ui, Color::white());
  245. cdeg=get(degree, *ui)+1;
  246. put(priority, *ui, W1*dist[index_map[*ui]]-W2*cdeg );
  247. }
  248. //Priority list
  249. typedef indirect_cmp<PriorityMap, std::greater<Degree> > Compare;
  250. Compare comp(priority);
  251. std::list<Vertex> priority_list;
  252. //Some more declarations
  253. typename graph_traits<Graph>::out_edge_iterator ei, ei_end, ei2, ei2_end;
  254. Vertex u, v, w;
  255. put(color, s, Color::green()); //Sets the color of the starting vertex to gray
  256. priority_list.push_front(s); //Puts s into the priority_list
  257. while ( !priority_list.empty() )
  258. {
  259. priority_list.sort(comp); //Orders the elements in the priority list in an ascending manner
  260. u = priority_list.front(); //Accesses the last element in the priority list
  261. priority_list.pop_front(); //Removes the last element in the priority list
  262. if(get(color, u) == Color::green() )
  263. {
  264. //for-loop over all out-edges of vertex u
  265. for (boost::tie(ei, ei_end) = out_edges(u, g); ei != ei_end; ++ei)
  266. {
  267. v = target(*ei, g);
  268. put( priority, v, get(priority, v) + W2 ); //updates the priority
  269. if (get(color, v) == Color::white() ) //test if the vertex is inactive
  270. {
  271. put(color, v, Color::green() ); //giving the vertex a preactive status
  272. priority_list.push_front(v); //writing the vertex in the priority_queue
  273. }
  274. }
  275. }
  276. //Here starts step 8
  277. *permutation++ = u; //Puts u to the first position in the permutation-vector
  278. put(color, u, Color::black() ); //Gives u an inactive status
  279. //for loop over all the adjacent vertices of u
  280. for (boost::tie(ei, ei_end) = out_edges(u, g); ei != ei_end; ++ei) {
  281. v = target(*ei, g);
  282. if (get(color, v) == Color::green() ) { //tests if the vertex is inactive
  283. put(color, v, Color::red() ); //giving the vertex an active status
  284. put(priority, v, get(priority, v)+W2); //updates the priority
  285. //for loop over alll adjacent vertices of v
  286. for (boost::tie(ei2, ei2_end) = out_edges(v, g); ei2 != ei2_end; ++ei2) {
  287. w = target(*ei2, g);
  288. if(get(color, w) != Color::black() ) { //tests if vertex is postactive
  289. put(priority, w, get(priority, w)+W2); //updates the priority
  290. if(get(color, w) == Color::white() ){
  291. put(color, w, Color::green() ); // gives the vertex a preactive status
  292. priority_list.push_front(w); // puts the vertex into the priority queue
  293. } //end if
  294. } //end if
  295. } //end for
  296. } //end if
  297. } //end for
  298. } //end while
  299. return permutation;
  300. }
  301. /////////////////////////////////////////////////////////////////////////////////////////
  302. // Same algorithm as before, but without the weights given (taking default weights
  303. template <class Graph, class OutputIterator,
  304. class ColorMap, class DegreeMap,
  305. class PriorityMap>
  306. OutputIterator
  307. sloan_ordering(Graph& g,
  308. typename graph_traits<Graph>::vertex_descriptor s,
  309. typename graph_traits<Graph>::vertex_descriptor e,
  310. OutputIterator permutation,
  311. ColorMap color,
  312. DegreeMap degree,
  313. PriorityMap priority)
  314. {
  315. return sloan_ordering(g, s, e, permutation, color, degree, priority, WEIGHT1, WEIGHT2);
  316. }
  317. //////////////////////////////////////////////////////////////////////////
  318. // Sloan algorithm without a given starting Vertex.
  319. //
  320. // This algorithm finds a good starting vertex itself to
  321. // compute Sloan-ordering.
  322. //////////////////////////////////////////////////////////////////////////
  323. template < class Graph, class OutputIterator,
  324. class Color, class Degree,
  325. class Priority, class Weight>
  326. inline OutputIterator
  327. sloan_ordering(Graph& G,
  328. OutputIterator permutation,
  329. Color color,
  330. Degree degree,
  331. Priority priority,
  332. Weight W1,
  333. Weight W2 )
  334. {
  335. typedef typename boost::graph_traits<Graph>::vertex_descriptor Vertex;
  336. Vertex s, e;
  337. e = sloan_start_end_vertices(G, s, color, degree);
  338. return sloan_ordering(G, s, e, permutation, color, degree, priority, W1, W2);
  339. }
  340. /////////////////////////////////////////////////////////////////////////////////////////
  341. // Same as before, but without given weights (default weights are taken instead)
  342. template < class Graph, class OutputIterator,
  343. class Color, class Degree,
  344. class Priority >
  345. inline OutputIterator
  346. sloan_ordering(Graph& G,
  347. OutputIterator permutation,
  348. Color color,
  349. Degree degree,
  350. Priority priority)
  351. {
  352. return sloan_ordering(G, permutation, color, degree, priority, WEIGHT1, WEIGHT2);
  353. }
  354. } // namespace boost
  355. #endif // BOOST_GRAPH_SLOAN_HPP