edge.hpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. //
  2. //=======================================================================
  3. // Copyright 1997, 1998, 1999, 2000 University of Notre Dame.
  4. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek
  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_DETAIL_EDGE_HPP
  11. #define BOOST_GRAPH_DETAIL_EDGE_HPP
  12. #include <iosfwd>
  13. namespace boost {
  14. namespace detail {
  15. template <typename Directed, typename Vertex>
  16. struct edge_base
  17. {
  18. inline edge_base() {}
  19. inline edge_base(Vertex s, Vertex d)
  20. : m_source(s), m_target(d) { }
  21. Vertex m_source;
  22. Vertex m_target;
  23. };
  24. template <typename Directed, typename Vertex>
  25. class edge_desc_impl : public edge_base<Directed,Vertex> {
  26. typedef edge_desc_impl self;
  27. typedef edge_base<Directed,Vertex> Base;
  28. public:
  29. typedef void property_type;
  30. inline edge_desc_impl() : m_eproperty(0) {}
  31. inline edge_desc_impl(Vertex s, Vertex d, const property_type* eplug)
  32. : Base(s,d), m_eproperty(const_cast<property_type*>(eplug)) { }
  33. property_type* get_property() { return m_eproperty; }
  34. const property_type* get_property() const { return m_eproperty; }
  35. // protected:
  36. property_type* m_eproperty;
  37. };
  38. template <class D, class V>
  39. inline bool
  40. operator==(const detail::edge_desc_impl<D,V>& a,
  41. const detail::edge_desc_impl<D,V>& b)
  42. {
  43. return a.get_property() == b.get_property();
  44. }
  45. template <class D, class V>
  46. inline bool
  47. operator!=(const detail::edge_desc_impl<D,V>& a,
  48. const detail::edge_desc_impl<D,V>& b)
  49. {
  50. return ! (a.get_property() == b.get_property());
  51. }
  52. // Order edges according to the address of their property object
  53. template <class D, class V>
  54. inline bool
  55. operator<(const detail::edge_desc_impl<D,V>& a,
  56. const detail::edge_desc_impl<D,V>& b)
  57. {
  58. return a.get_property() < b.get_property();
  59. }
  60. template <class D, class V>
  61. inline bool
  62. operator<=(const detail::edge_desc_impl<D,V>& a,
  63. const detail::edge_desc_impl<D,V>& b)
  64. {
  65. return a.get_property() <= b.get_property();
  66. }
  67. template <class D, class V>
  68. inline bool
  69. operator>(const detail::edge_desc_impl<D,V>& a,
  70. const detail::edge_desc_impl<D,V>& b)
  71. {
  72. return a.get_property() > b.get_property();
  73. }
  74. template <class D, class V>
  75. inline bool
  76. operator>=(const detail::edge_desc_impl<D,V>& a,
  77. const detail::edge_desc_impl<D,V>& b)
  78. {
  79. return a.get_property() >= b.get_property();
  80. }
  81. } //namespace detail
  82. } // namespace boost
  83. namespace std {
  84. template <class Char, class Traits, class D, class V>
  85. std::basic_ostream<Char, Traits>&
  86. operator<<(std::basic_ostream<Char, Traits>& os,
  87. const boost::detail::edge_desc_impl<D,V>& e)
  88. {
  89. return os << "(" << e.m_source << "," << e.m_target << ")";
  90. }
  91. }
  92. // Boost's functional/hash
  93. namespace boost {
  94. template<typename D, typename V>
  95. struct hash<boost::detail::edge_desc_impl<D, V> >
  96. {
  97. std::size_t operator()(const boost::detail::edge_desc_impl<D, V> & x) const
  98. { return hash_value(x.get_property()); }
  99. };
  100. }
  101. #endif // BOOST_GRAPH_DETAIL_DETAIL_EDGE_HPP