gursoy_atun_layout.hpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. // Copyright 2004 The Trustees of Indiana University.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // Authors: Jeremiah Willcock
  6. // Douglas Gregor
  7. // Andrew Lumsdaine
  8. #ifndef BOOST_GRAPH_GURSOY_ATUN_LAYOUT_HPP
  9. #define BOOST_GRAPH_GURSOY_ATUN_LAYOUT_HPP
  10. // Gursoy-Atun graph layout, based on:
  11. // "Neighbourhood Preserving Load Balancing: A Self-Organizing Approach"
  12. // in EuroPar 2000, p. 234 of LNCS 1900
  13. // http://springerlink.metapress.com/link.asp?id=pcu07ew5rhexp9yt
  14. #include <boost/config/no_tr1/cmath.hpp>
  15. #include <boost/throw_exception.hpp>
  16. #include <boost/assert.hpp>
  17. #include <vector>
  18. #include <exception>
  19. #include <algorithm>
  20. #include <boost/graph/visitors.hpp>
  21. #include <boost/graph/properties.hpp>
  22. #include <boost/random/uniform_01.hpp>
  23. #include <boost/random/linear_congruential.hpp>
  24. #include <boost/shared_ptr.hpp>
  25. #include <boost/graph/breadth_first_search.hpp>
  26. #include <boost/graph/dijkstra_shortest_paths.hpp>
  27. #include <boost/graph/named_function_params.hpp>
  28. #include <boost/graph/topology.hpp>
  29. namespace boost {
  30. namespace detail {
  31. struct over_distance_limit : public std::exception {};
  32. template <typename PositionMap, typename NodeDistanceMap, typename Topology,
  33. typename Graph>
  34. struct update_position_visitor {
  35. typedef typename Topology::point_type Point;
  36. PositionMap position_map;
  37. NodeDistanceMap node_distance;
  38. const Topology& space;
  39. Point input_vector;
  40. double distance_limit;
  41. double learning_constant;
  42. double falloff_ratio;
  43. typedef boost::on_examine_vertex event_filter;
  44. typedef typename graph_traits<Graph>::vertex_descriptor
  45. vertex_descriptor;
  46. update_position_visitor(PositionMap position_map,
  47. NodeDistanceMap node_distance,
  48. const Topology& space,
  49. const Point& input_vector,
  50. double distance_limit,
  51. double learning_constant,
  52. double falloff_ratio):
  53. position_map(position_map), node_distance(node_distance),
  54. space(space),
  55. input_vector(input_vector), distance_limit(distance_limit),
  56. learning_constant(learning_constant), falloff_ratio(falloff_ratio) {}
  57. void operator()(vertex_descriptor v, const Graph&) const
  58. {
  59. #ifndef BOOST_NO_STDC_NAMESPACE
  60. using std::pow;
  61. #endif
  62. if (get(node_distance, v) > distance_limit)
  63. BOOST_THROW_EXCEPTION(over_distance_limit());
  64. Point old_position = get(position_map, v);
  65. double distance = get(node_distance, v);
  66. double fraction =
  67. learning_constant * pow(falloff_ratio, distance * distance);
  68. put(position_map, v,
  69. space.move_position_toward(old_position, fraction, input_vector));
  70. }
  71. };
  72. template<typename EdgeWeightMap>
  73. struct gursoy_shortest
  74. {
  75. template<typename Graph, typename NodeDistanceMap, typename UpdatePosition>
  76. static inline void
  77. run(const Graph& g, typename graph_traits<Graph>::vertex_descriptor s,
  78. NodeDistanceMap node_distance, UpdatePosition& update_position,
  79. EdgeWeightMap weight)
  80. {
  81. boost::dijkstra_shortest_paths(g, s, weight_map(weight).
  82. visitor(boost::make_dijkstra_visitor(std::make_pair(
  83. boost::record_distances(node_distance, boost::on_edge_relaxed()),
  84. update_position))));
  85. }
  86. };
  87. template<>
  88. struct gursoy_shortest<dummy_property_map>
  89. {
  90. template<typename Graph, typename NodeDistanceMap, typename UpdatePosition>
  91. static inline void
  92. run(const Graph& g, typename graph_traits<Graph>::vertex_descriptor s,
  93. NodeDistanceMap node_distance, UpdatePosition& update_position,
  94. dummy_property_map)
  95. {
  96. boost::breadth_first_search(g, s,
  97. visitor(boost::make_bfs_visitor(std::make_pair(
  98. boost::record_distances(node_distance, boost::on_tree_edge()),
  99. update_position))));
  100. }
  101. };
  102. } // namespace detail
  103. template <typename VertexListAndIncidenceGraph, typename Topology,
  104. typename PositionMap, typename Diameter, typename VertexIndexMap,
  105. typename EdgeWeightMap>
  106. void
  107. gursoy_atun_step
  108. (const VertexListAndIncidenceGraph& graph,
  109. const Topology& space,
  110. PositionMap position,
  111. Diameter diameter,
  112. double learning_constant,
  113. VertexIndexMap vertex_index_map,
  114. EdgeWeightMap weight)
  115. {
  116. #ifndef BOOST_NO_STDC_NAMESPACE
  117. using std::pow;
  118. using std::exp;
  119. #endif
  120. typedef typename graph_traits<VertexListAndIncidenceGraph>::vertex_iterator
  121. vertex_iterator;
  122. typedef typename graph_traits<VertexListAndIncidenceGraph>::vertex_descriptor
  123. vertex_descriptor;
  124. typedef typename Topology::point_type point_type;
  125. vertex_iterator i, iend;
  126. std::vector<double> distance_from_input_vector(num_vertices(graph));
  127. typedef boost::iterator_property_map<std::vector<double>::iterator,
  128. VertexIndexMap,
  129. double, double&>
  130. DistanceFromInputMap;
  131. DistanceFromInputMap distance_from_input(distance_from_input_vector.begin(),
  132. vertex_index_map);
  133. std::vector<double> node_distance_map_vector(num_vertices(graph));
  134. typedef boost::iterator_property_map<std::vector<double>::iterator,
  135. VertexIndexMap,
  136. double, double&>
  137. NodeDistanceMap;
  138. NodeDistanceMap node_distance(node_distance_map_vector.begin(),
  139. vertex_index_map);
  140. point_type input_vector = space.random_point();
  141. vertex_descriptor min_distance_loc
  142. = graph_traits<VertexListAndIncidenceGraph>::null_vertex();
  143. double min_distance = 0.0;
  144. bool min_distance_unset = true;
  145. for (boost::tie(i, iend) = vertices(graph); i != iend; ++i) {
  146. double this_distance = space.distance(get(position, *i), input_vector);
  147. put(distance_from_input, *i, this_distance);
  148. if (min_distance_unset || this_distance < min_distance) {
  149. min_distance = this_distance;
  150. min_distance_loc = *i;
  151. }
  152. min_distance_unset = false;
  153. }
  154. BOOST_ASSERT (!min_distance_unset); // Graph must have at least one vertex
  155. boost::detail::update_position_visitor<
  156. PositionMap, NodeDistanceMap, Topology,
  157. VertexListAndIncidenceGraph>
  158. update_position(position, node_distance, space,
  159. input_vector, diameter, learning_constant,
  160. exp(-1. / (2 * diameter * diameter)));
  161. std::fill(node_distance_map_vector.begin(), node_distance_map_vector.end(), 0);
  162. try {
  163. typedef detail::gursoy_shortest<EdgeWeightMap> shortest;
  164. shortest::run(graph, min_distance_loc, node_distance, update_position,
  165. weight);
  166. } catch (detail::over_distance_limit) {
  167. /* Thrown to break out of BFS or Dijkstra early */
  168. }
  169. }
  170. template <typename VertexListAndIncidenceGraph, typename Topology,
  171. typename PositionMap, typename VertexIndexMap,
  172. typename EdgeWeightMap>
  173. void gursoy_atun_refine(const VertexListAndIncidenceGraph& graph,
  174. const Topology& space,
  175. PositionMap position,
  176. int nsteps,
  177. double diameter_initial,
  178. double diameter_final,
  179. double learning_constant_initial,
  180. double learning_constant_final,
  181. VertexIndexMap vertex_index_map,
  182. EdgeWeightMap weight)
  183. {
  184. #ifndef BOOST_NO_STDC_NAMESPACE
  185. using std::pow;
  186. using std::exp;
  187. #endif
  188. typedef typename graph_traits<VertexListAndIncidenceGraph>::vertex_iterator
  189. vertex_iterator;
  190. vertex_iterator i, iend;
  191. double diameter_ratio = (double)diameter_final / diameter_initial;
  192. double learning_constant_ratio =
  193. learning_constant_final / learning_constant_initial;
  194. std::vector<double> distance_from_input_vector(num_vertices(graph));
  195. typedef boost::iterator_property_map<std::vector<double>::iterator,
  196. VertexIndexMap,
  197. double, double&>
  198. DistanceFromInputMap;
  199. DistanceFromInputMap distance_from_input(distance_from_input_vector.begin(),
  200. vertex_index_map);
  201. std::vector<int> node_distance_map_vector(num_vertices(graph));
  202. typedef boost::iterator_property_map<std::vector<int>::iterator,
  203. VertexIndexMap, double, double&>
  204. NodeDistanceMap;
  205. NodeDistanceMap node_distance(node_distance_map_vector.begin(),
  206. vertex_index_map);
  207. for (int round = 0; round < nsteps; ++round) {
  208. double part_done = (double)round / (nsteps - 1);
  209. // fprintf(stderr, "%2d%% done\n", int(rint(part_done * 100.)));
  210. int diameter = (int)(diameter_initial * pow(diameter_ratio, part_done));
  211. double learning_constant =
  212. learning_constant_initial * pow(learning_constant_ratio, part_done);
  213. gursoy_atun_step(graph, space, position, diameter, learning_constant,
  214. vertex_index_map, weight);
  215. }
  216. }
  217. template <typename VertexListAndIncidenceGraph, typename Topology,
  218. typename PositionMap, typename VertexIndexMap,
  219. typename EdgeWeightMap>
  220. void gursoy_atun_layout(const VertexListAndIncidenceGraph& graph,
  221. const Topology& space,
  222. PositionMap position,
  223. int nsteps,
  224. double diameter_initial,
  225. double diameter_final,
  226. double learning_constant_initial,
  227. double learning_constant_final,
  228. VertexIndexMap vertex_index_map,
  229. EdgeWeightMap weight)
  230. {
  231. typedef typename graph_traits<VertexListAndIncidenceGraph>::vertex_iterator
  232. vertex_iterator;
  233. vertex_iterator i, iend;
  234. for (boost::tie(i, iend) = vertices(graph); i != iend; ++i) {
  235. put(position, *i, space.random_point());
  236. }
  237. gursoy_atun_refine(graph, space,
  238. position, nsteps,
  239. diameter_initial, diameter_final,
  240. learning_constant_initial, learning_constant_final,
  241. vertex_index_map, weight);
  242. }
  243. template <typename VertexListAndIncidenceGraph, typename Topology,
  244. typename PositionMap, typename VertexIndexMap>
  245. void gursoy_atun_layout(const VertexListAndIncidenceGraph& graph,
  246. const Topology& space,
  247. PositionMap position,
  248. int nsteps,
  249. double diameter_initial,
  250. double diameter_final,
  251. double learning_constant_initial,
  252. double learning_constant_final,
  253. VertexIndexMap vertex_index_map)
  254. {
  255. gursoy_atun_layout(graph, space, position, nsteps,
  256. diameter_initial, diameter_final,
  257. learning_constant_initial, learning_constant_final,
  258. vertex_index_map, dummy_property_map());
  259. }
  260. template <typename VertexListAndIncidenceGraph, typename Topology,
  261. typename PositionMap>
  262. void gursoy_atun_layout(const VertexListAndIncidenceGraph& graph,
  263. const Topology& space,
  264. PositionMap position,
  265. int nsteps,
  266. double diameter_initial,
  267. double diameter_final = 1.0,
  268. double learning_constant_initial = 0.8,
  269. double learning_constant_final = 0.2)
  270. {
  271. gursoy_atun_layout(graph, space, position, nsteps, diameter_initial,
  272. diameter_final, learning_constant_initial,
  273. learning_constant_final, get(vertex_index, graph));
  274. }
  275. template <typename VertexListAndIncidenceGraph, typename Topology,
  276. typename PositionMap>
  277. void gursoy_atun_layout(const VertexListAndIncidenceGraph& graph,
  278. const Topology& space,
  279. PositionMap position,
  280. int nsteps)
  281. {
  282. #ifndef BOOST_NO_STDC_NAMESPACE
  283. using std::sqrt;
  284. #endif
  285. gursoy_atun_layout(graph, space, position, nsteps,
  286. sqrt((double)num_vertices(graph)));
  287. }
  288. template <typename VertexListAndIncidenceGraph, typename Topology,
  289. typename PositionMap>
  290. void gursoy_atun_layout(const VertexListAndIncidenceGraph& graph,
  291. const Topology& space,
  292. PositionMap position)
  293. {
  294. gursoy_atun_layout(graph, space, position, num_vertices(graph));
  295. }
  296. template<typename VertexListAndIncidenceGraph, typename Topology,
  297. typename PositionMap, typename P, typename T, typename R>
  298. void
  299. gursoy_atun_layout(const VertexListAndIncidenceGraph& graph,
  300. const Topology& space,
  301. PositionMap position,
  302. const bgl_named_params<P,T,R>& params)
  303. {
  304. #ifndef BOOST_NO_STDC_NAMESPACE
  305. using std::sqrt;
  306. #endif
  307. std::pair<double, double> diam(sqrt(double(num_vertices(graph))), 1.0);
  308. std::pair<double, double> learn(0.8, 0.2);
  309. gursoy_atun_layout(graph, space, position,
  310. choose_param(get_param(params, iterations_t()),
  311. num_vertices(graph)),
  312. choose_param(get_param(params, diameter_range_t()),
  313. diam).first,
  314. choose_param(get_param(params, diameter_range_t()),
  315. diam).second,
  316. choose_param(get_param(params, learning_constant_range_t()),
  317. learn).first,
  318. choose_param(get_param(params, learning_constant_range_t()),
  319. learn).second,
  320. choose_const_pmap(get_param(params, vertex_index), graph,
  321. vertex_index),
  322. choose_param(get_param(params, edge_weight),
  323. dummy_property_map()));
  324. }
  325. } // namespace boost
  326. #endif // BOOST_GRAPH_GURSOY_ATUN_LAYOUT_HPP