reverse_graph_cc.cpp 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //=======================================================================
  2. // Copyright 1997, 1998, 1999, 2000 University of Notre Dame.
  3. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek
  4. //
  5. // Distributed under the Boost Software License, Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //=======================================================================
  9. #include <boost/graph/graph_concepts.hpp>
  10. #include <boost/graph/graph_archetypes.hpp>
  11. #include <boost/graph/adjacency_list.hpp>
  12. #include <boost/graph/reverse_graph.hpp>
  13. #include <boost/concept/assert.hpp>
  14. #include <string>
  15. int main(int,char*[])
  16. {
  17. using namespace boost;
  18. // Check const reverse_graph
  19. {
  20. typedef adjacency_list< vecS, vecS, bidirectionalS,
  21. property<vertex_color_t, int>,
  22. property<edge_weight_t, int>,
  23. property<graph_name_t, std::string>
  24. > AdjList;
  25. typedef reverse_graph<AdjList> Graph;
  26. BOOST_CONCEPT_ASSERT(( VertexListGraphConcept<Graph> ));
  27. BOOST_CONCEPT_ASSERT(( BidirectionalGraphConcept<Graph> ));
  28. typedef graph_traits<Graph>::vertex_descriptor Vertex;
  29. typedef graph_traits<Graph>::edge_descriptor Edge;
  30. BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept<Graph, Vertex, vertex_color_t> ));
  31. BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept<Graph, Edge, edge_weight_t> ));
  32. BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept<Graph, Edge, edge_underlying_t> ));
  33. AdjList g;
  34. Graph gr(g);
  35. get_property(gr, graph_name_t());
  36. }
  37. // Check non-const reverse_graph
  38. {
  39. typedef adjacency_list< vecS, vecS, bidirectionalS,
  40. property<vertex_color_t, int>,
  41. property<edge_weight_t, int>,
  42. property<graph_name_t, std::string>
  43. > AdjList;
  44. typedef reverse_graph<AdjList,AdjList&> Graph;
  45. BOOST_CONCEPT_ASSERT(( VertexListGraphConcept<Graph> ));
  46. BOOST_CONCEPT_ASSERT(( BidirectionalGraphConcept<Graph> ));
  47. typedef graph_traits<Graph>::vertex_descriptor Vertex;
  48. typedef graph_traits<Graph>::edge_descriptor Edge;
  49. BOOST_CONCEPT_ASSERT(( PropertyGraphConcept<Graph, Vertex, vertex_color_t> ));
  50. BOOST_CONCEPT_ASSERT(( PropertyGraphConcept<Graph, Edge, edge_weight_t> ));
  51. BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept<Graph, Edge, edge_underlying_t> ));
  52. AdjList g;
  53. Graph gr(g);
  54. get_property(gr, graph_name_t());
  55. set_property(gr, graph_name_t(), "foo");
  56. }
  57. return 0;
  58. }