profile.hpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. #ifndef BOOST_GRAPH_PROFILE_HPP
  11. #define BOOST_GRAPH_PROFILE_HPP
  12. #include <boost/graph/graph_traits.hpp>
  13. #include <boost/detail/numeric_traits.hpp>
  14. #include <boost/graph/bandwidth.hpp>
  15. namespace boost {
  16. template <typename Graph, typename VertexIndexMap>
  17. typename graph_traits<Graph>::vertices_size_type
  18. profile(const Graph& g, VertexIndexMap index)
  19. {
  20. typename graph_traits<Graph>::vertices_size_type b = 0;
  21. typename graph_traits<Graph>::vertex_iterator i, end;
  22. for (boost::tie(i, end) = vertices(g); i != end; ++i){
  23. b += ith_bandwidth(*i, g, index) + 1;
  24. }
  25. return b;
  26. }
  27. template <typename Graph>
  28. typename graph_traits<Graph>::vertices_size_type
  29. profile(const Graph& g)
  30. {
  31. return profile(g, get(vertex_index, g));
  32. }
  33. } // namespace boost
  34. #endif // BOOST_GRAPH_PROFILE_HPP