index.hpp 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // (C) Copyright 2007-2009 Andrew Sutton
  2. //
  3. // Use, modification and distribution are subject to the
  4. // Boost Software License, Version 1.0 (See accompanying file
  5. // LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  6. #ifndef BOOST_GRAPH_DETAIL_INDEX_HPP
  7. #define BOOST_GRAPH_DETAIL_INDEX_HPP
  8. #include <boost/graph/graph_traits.hpp>
  9. // The structures in this module are responsible for selecting and defining
  10. // types for accessing a builting index map. Note that the selection of these
  11. // types requires the Graph parameter to model either VertexIndexGraph or
  12. // EdgeIndexGraph.
  13. namespace boost
  14. {
  15. namespace detail
  16. {
  17. template < typename Graph > struct vertex_indexer
  18. {
  19. typedef vertex_index_t index_type;
  20. typedef typename property_map< Graph, vertex_index_t >::type map_type;
  21. typedef typename property_map< Graph, vertex_index_t >::const_type
  22. const_map_type;
  23. typedef typename property_traits< map_type >::value_type value_type;
  24. typedef typename graph_traits< Graph >::vertex_descriptor key_type;
  25. static const_map_type index_map(const Graph& g)
  26. {
  27. return get(vertex_index, g);
  28. }
  29. static map_type index_map(Graph& g) { return get(vertex_index, g); }
  30. static value_type index(key_type k, const Graph& g)
  31. {
  32. return get(vertex_index, g, k);
  33. }
  34. };
  35. template < typename Graph > struct edge_indexer
  36. {
  37. typedef edge_index_t index_type;
  38. typedef typename property_map< Graph, edge_index_t >::type map_type;
  39. typedef typename property_map< Graph, edge_index_t >::const_type
  40. const_map_type;
  41. typedef typename property_traits< map_type >::value_type value_type;
  42. typedef typename graph_traits< Graph >::edge_descriptor key_type;
  43. static const_map_type index_map(const Graph& g)
  44. {
  45. return get(edge_index, g);
  46. }
  47. static map_type index_map(Graph& g) { return get(edge_index, g); }
  48. static value_type index(key_type k, const Graph& g)
  49. {
  50. return get(edge_index, g, k);
  51. }
  52. };
  53. // NOTE: The Graph parameter MUST be a model of VertexIndexGraph or
  54. // VertexEdgeGraph - whichever type Key is selecting.
  55. template < typename Graph, typename Key > struct choose_indexer
  56. {
  57. typedef typename mpl::if_<
  58. is_same< Key, typename graph_traits< Graph >::vertex_descriptor >,
  59. vertex_indexer< Graph >, edge_indexer< Graph > >::type indexer_type;
  60. typedef typename indexer_type::index_type index_type;
  61. };
  62. }
  63. }
  64. #endif