wavefront.hpp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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_WAVEFRONT_HPP
  12. #define BOOST_GRAPH_WAVEFRONT_HPP
  13. #include <boost/config.hpp>
  14. #include <boost/graph/graph_traits.hpp>
  15. #include <boost/detail/numeric_traits.hpp>
  16. #include <boost/graph/bandwidth.hpp>
  17. #include <boost/config/no_tr1/cmath.hpp>
  18. #include <vector>
  19. #include <algorithm> // for std::min and std::max
  20. namespace boost {
  21. template <typename Graph, typename VertexIndexMap>
  22. typename graph_traits<Graph>::vertices_size_type
  23. ith_wavefront(typename graph_traits<Graph>::vertex_descriptor i,
  24. const Graph& g,
  25. VertexIndexMap index)
  26. {
  27. typename graph_traits<Graph>::vertex_descriptor v, w;
  28. typename graph_traits<Graph>::vertices_size_type b = 1;
  29. typename graph_traits<Graph>::out_edge_iterator edge_it2, edge_it2_end;
  30. typename graph_traits<Graph>::vertices_size_type index_i = index[i];
  31. std::vector<bool> rows_active(num_vertices(g), false);
  32. rows_active[index_i] = true;
  33. typename graph_traits<Graph>::vertex_iterator ui, ui_end;
  34. for (boost::tie(ui, ui_end) = vertices(g); ui != ui_end; ++ui)
  35. {
  36. v = *ui;
  37. if(index[v] <= index_i)
  38. {
  39. for (boost::tie(edge_it2, edge_it2_end) = out_edges(v, g); edge_it2 != edge_it2_end; ++edge_it2)
  40. {
  41. w = target(*edge_it2, g);
  42. if( (index[w] >= index_i) && (!rows_active[index[w]]) )
  43. {
  44. b++;
  45. rows_active[index[w]] = true;
  46. }
  47. }
  48. }
  49. }
  50. return b;
  51. }
  52. template <typename Graph>
  53. typename graph_traits<Graph>::vertices_size_type
  54. ith_wavefront(typename graph_traits<Graph>::vertex_descriptor i,
  55. const Graph& g)
  56. {
  57. return ith_wavefront(i, g, get(vertex_index, g));
  58. }
  59. template <typename Graph, typename VertexIndexMap>
  60. typename graph_traits<Graph>::vertices_size_type
  61. max_wavefront(const Graph& g, VertexIndexMap index)
  62. {
  63. BOOST_USING_STD_MAX();
  64. typename graph_traits<Graph>::vertices_size_type b = 0;
  65. typename graph_traits<Graph>::vertex_iterator i, end;
  66. for (boost::tie(i, end) = vertices(g); i != end; ++i)
  67. b = max BOOST_PREVENT_MACRO_SUBSTITUTION(b, ith_wavefront(*i, g, index));
  68. return b;
  69. }
  70. template <typename Graph>
  71. typename graph_traits<Graph>::vertices_size_type
  72. max_wavefront(const Graph& g)
  73. {
  74. return max_wavefront(g, get(vertex_index, g));
  75. }
  76. template <typename Graph, typename VertexIndexMap>
  77. double
  78. aver_wavefront(const Graph& g, VertexIndexMap index)
  79. {
  80. double b = 0;
  81. typename graph_traits<Graph>::vertex_iterator i, end;
  82. for (boost::tie(i, end) = vertices(g); i != end; ++i)
  83. b += ith_wavefront(*i, g, index);
  84. b /= num_vertices(g);
  85. return b;
  86. }
  87. template <typename Graph>
  88. double
  89. aver_wavefront(const Graph& g)
  90. {
  91. return aver_wavefront(g, get(vertex_index, g));
  92. }
  93. template <typename Graph, typename VertexIndexMap>
  94. double
  95. rms_wavefront(const Graph& g, VertexIndexMap index)
  96. {
  97. double b = 0;
  98. typename graph_traits<Graph>::vertex_iterator i, end;
  99. for (boost::tie(i, end) = vertices(g); i != end; ++i)
  100. b += std::pow(double ( ith_wavefront(*i, g, index) ), 2.0);
  101. b /= num_vertices(g);
  102. return std::sqrt(b);
  103. }
  104. template <typename Graph>
  105. double
  106. rms_wavefront(const Graph& g)
  107. {
  108. return rms_wavefront(g, get(vertex_index, g));
  109. }
  110. } // namespace boost
  111. #endif // BOOST_GRAPH_WAVEFRONT_HPP