exterior_property.hpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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_EXTERIOR_PROPERTY_HPP
  7. #define BOOST_GRAPH_EXTERIOR_PROPERTY_HPP
  8. #include <vector>
  9. #include <boost/graph/property_maps/container_property_map.hpp>
  10. #include <boost/graph/property_maps/matrix_property_map.hpp>
  11. namespace boost {
  12. namespace detail {
  13. // The vector matrix provides a little abstraction over vector
  14. // types that makes matrices easier to work with. Note that it's
  15. // non-copyable, meaning you should be passing it by value.
  16. template <typename Value>
  17. struct vector_matrix
  18. {
  19. typedef std::vector<Value> container_type;
  20. typedef std::vector<container_type> matrix_type;
  21. typedef container_type value_type;
  22. typedef container_type& reference;
  23. typedef const container_type const_reference;
  24. typedef container_type* pointer;
  25. typedef typename matrix_type::size_type size_type;
  26. // Instantiate the matrix over n elements (creates an nxn matrix).
  27. // The graph has to be passed in order to ensure the index maps
  28. // are constructed correctly when returning indexible elements.
  29. inline vector_matrix(size_type n)
  30. : m_matrix(n, container_type(n))
  31. { }
  32. inline reference operator [](size_type n)
  33. { return m_matrix[n]; }
  34. inline const_reference operator [](size_type n) const
  35. { return m_matrix[n]; }
  36. matrix_type m_matrix;
  37. };
  38. } /* namespace detail */
  39. /**
  40. * The exterior_property metafunction defines an appropriate set of types for
  41. * creating an exterior property. An exterior property is comprised of a both
  42. * a container and a property map that acts as its abstraction. An extension
  43. * of this metafunction will select an appropriate "matrix" property that
  44. * records values for pairs of vertices.
  45. *
  46. * @todo This does not currently support the ability to define exterior
  47. * properties for graph types that do not model the IndexGraph concepts. A
  48. * solution should not be especially difficult, but will require an extension
  49. * of type traits to affect the type selection.
  50. */
  51. template <typename Graph, typename Key, typename Value>
  52. struct exterior_property
  53. {
  54. typedef Key key_type;
  55. typedef Value value_type;
  56. typedef std::vector<Value> container_type;
  57. typedef container_property_map<Graph, Key, container_type> map_type;
  58. typedef detail::vector_matrix<Value> matrix_type;
  59. typedef matrix_property_map<Graph, Key, matrix_type> matrix_map_type;
  60. private:
  61. exterior_property() { }
  62. exterior_property(const exterior_property&) { }
  63. };
  64. /**
  65. * Define a the container and property map types requried to create an exterior
  66. * vertex property for the given value type. The Graph parameter is required to
  67. * model the VertexIndexGraph concept.
  68. */
  69. template <typename Graph, typename Value>
  70. struct exterior_vertex_property
  71. {
  72. typedef exterior_property<
  73. Graph, typename graph_traits<Graph>::vertex_descriptor, Value
  74. > property_type;
  75. typedef typename property_type::key_type key_type;
  76. typedef typename property_type::value_type value_type;
  77. typedef typename property_type::container_type container_type;
  78. typedef typename property_type::map_type map_type;
  79. typedef typename property_type::matrix_type matrix_type;
  80. typedef typename property_type::matrix_map_type matrix_map_type;
  81. };
  82. /**
  83. * Define a the container and property map types requried to create an exterior
  84. * edge property for the given value type. The Graph parameter is required to
  85. * model the EdgeIndexGraph concept.
  86. */
  87. template <typename Graph, typename Value>
  88. struct exterior_edge_property
  89. {
  90. typedef exterior_property<
  91. Graph, typename graph_traits<Graph>::edge_descriptor, Value
  92. > property_type;
  93. typedef typename property_type::key_type key_type;
  94. typedef typename property_type::value_type value_type;
  95. typedef typename property_type::container_type container_type;
  96. typedef typename property_type::map_type map_type;
  97. typedef typename property_type::matrix_type matrix_type;
  98. typedef typename property_type::matrix_map_type matrix_map_type;
  99. };
  100. } /* namespace boost */
  101. #endif