graph_concepts.hpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. //
  2. //=======================================================================
  3. // Copyright 1997, 1998, 1999, 2000 University of Notre Dame.
  4. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek
  5. //
  6. // Copyright 2009, Andrew Sutton
  7. //
  8. // Distributed under the Boost Software License, Version 1.0. (See
  9. // accompanying file LICENSE_1_0.txt or copy at
  10. // http://www.boost.org/LICENSE_1_0.txt)
  11. //=======================================================================
  12. //
  13. #ifndef BOOST_GRAPH_CONCEPTS_HPP
  14. #define BOOST_GRAPH_CONCEPTS_HPP
  15. #include <boost/config.hpp>
  16. #include <boost/property_map/property_map.hpp>
  17. #include <boost/graph/graph_traits.hpp>
  18. #include <boost/graph/properties.hpp>
  19. #include <boost/graph/numeric_values.hpp>
  20. #include <boost/graph/buffer_concepts.hpp>
  21. #include <boost/concept_check.hpp>
  22. #include <boost/type_traits/is_same.hpp>
  23. #include <boost/mpl/not.hpp>
  24. #include <boost/static_assert.hpp>
  25. #include <boost/detail/workaround.hpp>
  26. #include <boost/concept/assert.hpp>
  27. #include <boost/concept/detail/concept_def.hpp>
  28. namespace boost
  29. {
  30. // dwa 2003/7/11 -- This clearly shouldn't be necessary, but if
  31. // you want to use vector_as_graph, it is! I'm sure the graph
  32. // library leaves these out all over the place. Probably a
  33. // redesign involving specializing a template with a static
  34. // member function is in order :(
  35. //
  36. // It is needed in order to allow us to write using boost::vertices as
  37. // needed for ADL when using vector_as_graph below.
  38. #if !defined(BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP) \
  39. && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  40. # define BOOST_VECTOR_AS_GRAPH_GRAPH_ADL_HACK
  41. #endif
  42. #ifdef BOOST_VECTOR_AS_GRAPH_GRAPH_ADL_HACK
  43. template <class T>
  44. typename T::ThereReallyIsNoMemberByThisNameInT vertices(T const&);
  45. #endif
  46. namespace concepts {
  47. BOOST_concept(MultiPassInputIterator,(T)) {
  48. BOOST_CONCEPT_USAGE(MultiPassInputIterator) {
  49. BOOST_CONCEPT_ASSERT((InputIterator<T>));
  50. }
  51. };
  52. BOOST_concept(Graph,(G))
  53. {
  54. typedef typename graph_traits<G>::vertex_descriptor vertex_descriptor;
  55. typedef typename graph_traits<G>::edge_descriptor edge_descriptor;
  56. typedef typename graph_traits<G>::directed_category directed_category;
  57. typedef typename graph_traits<G>::edge_parallel_category edge_parallel_category;
  58. typedef typename graph_traits<G>::traversal_category traversal_category;
  59. BOOST_CONCEPT_USAGE(Graph)
  60. {
  61. BOOST_CONCEPT_ASSERT((DefaultConstructible<vertex_descriptor>));
  62. BOOST_CONCEPT_ASSERT((EqualityComparable<vertex_descriptor>));
  63. BOOST_CONCEPT_ASSERT((Assignable<vertex_descriptor>));
  64. }
  65. G g;
  66. };
  67. BOOST_concept(IncidenceGraph,(G))
  68. : Graph<G>
  69. {
  70. typedef typename graph_traits<G>::edge_descriptor edge_descriptor;
  71. typedef typename graph_traits<G>::out_edge_iterator out_edge_iterator;
  72. typedef typename graph_traits<G>::degree_size_type degree_size_type;
  73. typedef typename graph_traits<G>::traversal_category traversal_category;
  74. BOOST_STATIC_ASSERT((boost::mpl::not_<boost::is_same<out_edge_iterator, void> >::value));
  75. BOOST_STATIC_ASSERT((boost::mpl::not_<boost::is_same<degree_size_type, void> >::value));
  76. BOOST_CONCEPT_USAGE(IncidenceGraph) {
  77. BOOST_CONCEPT_ASSERT((MultiPassInputIterator<out_edge_iterator>));
  78. BOOST_CONCEPT_ASSERT((DefaultConstructible<edge_descriptor>));
  79. BOOST_CONCEPT_ASSERT((EqualityComparable<edge_descriptor>));
  80. BOOST_CONCEPT_ASSERT((Assignable<edge_descriptor>));
  81. BOOST_CONCEPT_ASSERT((Convertible<traversal_category,
  82. incidence_graph_tag>));
  83. p = out_edges(u, g);
  84. n = out_degree(u, g);
  85. e = *p.first;
  86. u = source(e, g);
  87. v = target(e, g);
  88. const_constraints(g);
  89. }
  90. void const_constraints(const G& cg) {
  91. p = out_edges(u, cg);
  92. n = out_degree(u, cg);
  93. e = *p.first;
  94. u = source(e, cg);
  95. v = target(e, cg);
  96. }
  97. std::pair<out_edge_iterator, out_edge_iterator> p;
  98. typename graph_traits<G>::vertex_descriptor u, v;
  99. typename graph_traits<G>::edge_descriptor e;
  100. typename graph_traits<G>::degree_size_type n;
  101. G g;
  102. };
  103. BOOST_concept(BidirectionalGraph,(G))
  104. : IncidenceGraph<G>
  105. {
  106. typedef typename graph_traits<G>::in_edge_iterator
  107. in_edge_iterator;
  108. typedef typename graph_traits<G>::traversal_category
  109. traversal_category;
  110. BOOST_CONCEPT_USAGE(BidirectionalGraph) {
  111. BOOST_CONCEPT_ASSERT((MultiPassInputIterator<in_edge_iterator>));
  112. BOOST_CONCEPT_ASSERT((Convertible<traversal_category,
  113. bidirectional_graph_tag>));
  114. BOOST_STATIC_ASSERT((boost::mpl::not_<boost::is_same<in_edge_iterator, void> >::value));
  115. p = in_edges(v, g);
  116. n = in_degree(v, g);
  117. e = *p.first;
  118. const_constraints(g);
  119. }
  120. void const_constraints(const G& cg) {
  121. p = in_edges(v, cg);
  122. n = in_degree(v, cg);
  123. e = *p.first;
  124. }
  125. std::pair<in_edge_iterator, in_edge_iterator> p;
  126. typename graph_traits<G>::vertex_descriptor v;
  127. typename graph_traits<G>::edge_descriptor e;
  128. typename graph_traits<G>::degree_size_type n;
  129. G g;
  130. };
  131. BOOST_concept(AdjacencyGraph,(G))
  132. : Graph<G>
  133. {
  134. typedef typename graph_traits<G>::adjacency_iterator
  135. adjacency_iterator;
  136. typedef typename graph_traits<G>::traversal_category
  137. traversal_category;
  138. BOOST_CONCEPT_USAGE(AdjacencyGraph) {
  139. BOOST_CONCEPT_ASSERT((MultiPassInputIterator<adjacency_iterator>));
  140. BOOST_CONCEPT_ASSERT((Convertible<traversal_category,
  141. adjacency_graph_tag>));
  142. BOOST_STATIC_ASSERT((boost::mpl::not_<boost::is_same<adjacency_iterator, void> >::value));
  143. p = adjacent_vertices(v, g);
  144. v = *p.first;
  145. const_constraints(g);
  146. }
  147. void const_constraints(const G& cg) {
  148. p = adjacent_vertices(v, cg);
  149. }
  150. std::pair<adjacency_iterator,adjacency_iterator> p;
  151. typename graph_traits<G>::vertex_descriptor v;
  152. G g;
  153. };
  154. BOOST_concept(VertexListGraph,(G))
  155. : Graph<G>
  156. {
  157. typedef typename graph_traits<G>::vertex_iterator vertex_iterator;
  158. typedef typename graph_traits<G>::vertices_size_type vertices_size_type;
  159. typedef typename graph_traits<G>::traversal_category
  160. traversal_category;
  161. BOOST_CONCEPT_USAGE(VertexListGraph) {
  162. BOOST_CONCEPT_ASSERT((MultiPassInputIterator<vertex_iterator>));
  163. BOOST_CONCEPT_ASSERT((Convertible<traversal_category,
  164. vertex_list_graph_tag>));
  165. BOOST_STATIC_ASSERT((boost::mpl::not_<boost::is_same<vertex_iterator, void> >::value));
  166. BOOST_STATIC_ASSERT((boost::mpl::not_<boost::is_same<vertices_size_type, void> >::value));
  167. #ifdef BOOST_VECTOR_AS_GRAPH_GRAPH_ADL_HACK
  168. // dwa 2003/7/11 -- This clearly shouldn't be necessary, but if
  169. // you want to use vector_as_graph, it is! I'm sure the graph
  170. // library leaves these out all over the place. Probably a
  171. // redesign involving specializing a template with a static
  172. // member function is in order :(
  173. using boost::vertices;
  174. #endif
  175. p = vertices(g);
  176. v = *p.first;
  177. const_constraints(g);
  178. }
  179. void const_constraints(const G& cg) {
  180. #ifdef BOOST_VECTOR_AS_GRAPH_GRAPH_ADL_HACK
  181. // dwa 2003/7/11 -- This clearly shouldn't be necessary, but if
  182. // you want to use vector_as_graph, it is! I'm sure the graph
  183. // library leaves these out all over the place. Probably a
  184. // redesign involving specializing a template with a static
  185. // member function is in order :(
  186. using boost::vertices;
  187. #endif
  188. p = vertices(cg);
  189. v = *p.first;
  190. V = num_vertices(cg);
  191. }
  192. std::pair<vertex_iterator,vertex_iterator> p;
  193. typename graph_traits<G>::vertex_descriptor v;
  194. G g;
  195. vertices_size_type V;
  196. };
  197. BOOST_concept(EdgeListGraph,(G))
  198. : Graph<G>
  199. {
  200. typedef typename graph_traits<G>::edge_descriptor edge_descriptor;
  201. typedef typename graph_traits<G>::edge_iterator edge_iterator;
  202. typedef typename graph_traits<G>::edges_size_type edges_size_type;
  203. typedef typename graph_traits<G>::traversal_category
  204. traversal_category;
  205. BOOST_CONCEPT_USAGE(EdgeListGraph) {
  206. BOOST_CONCEPT_ASSERT((MultiPassInputIterator<edge_iterator>));
  207. BOOST_CONCEPT_ASSERT((DefaultConstructible<edge_descriptor>));
  208. BOOST_CONCEPT_ASSERT((EqualityComparable<edge_descriptor>));
  209. BOOST_CONCEPT_ASSERT((Assignable<edge_descriptor>));
  210. BOOST_CONCEPT_ASSERT((Convertible<traversal_category,
  211. edge_list_graph_tag>));
  212. BOOST_STATIC_ASSERT((boost::mpl::not_<boost::is_same<edge_iterator, void> >::value));
  213. BOOST_STATIC_ASSERT((boost::mpl::not_<boost::is_same<edges_size_type, void> >::value));
  214. p = edges(g);
  215. e = *p.first;
  216. u = source(e, g);
  217. v = target(e, g);
  218. const_constraints(g);
  219. }
  220. void const_constraints(const G& cg) {
  221. p = edges(cg);
  222. E = num_edges(cg);
  223. e = *p.first;
  224. u = source(e, cg);
  225. v = target(e, cg);
  226. }
  227. std::pair<edge_iterator,edge_iterator> p;
  228. typename graph_traits<G>::vertex_descriptor u, v;
  229. typename graph_traits<G>::edge_descriptor e;
  230. edges_size_type E;
  231. G g;
  232. };
  233. BOOST_concept(VertexAndEdgeListGraph,(G))
  234. : VertexListGraph<G>
  235. , EdgeListGraph<G>
  236. {
  237. };
  238. // Where to put the requirement for this constructor?
  239. // G g(n_vertices);
  240. // Not in mutable graph, then LEDA graph's can't be models of
  241. // MutableGraph.
  242. BOOST_concept(EdgeMutableGraph,(G))
  243. {
  244. typedef typename graph_traits<G>::edge_descriptor edge_descriptor;
  245. BOOST_CONCEPT_USAGE(EdgeMutableGraph) {
  246. p = add_edge(u, v, g);
  247. remove_edge(u, v, g);
  248. remove_edge(e, g);
  249. clear_vertex(v, g);
  250. }
  251. G g;
  252. edge_descriptor e;
  253. std::pair<edge_descriptor, bool> p;
  254. typename graph_traits<G>::vertex_descriptor u, v;
  255. };
  256. BOOST_concept(VertexMutableGraph,(G))
  257. {
  258. BOOST_CONCEPT_USAGE(VertexMutableGraph) {
  259. v = add_vertex(g);
  260. remove_vertex(v, g);
  261. }
  262. G g;
  263. typename graph_traits<G>::vertex_descriptor u, v;
  264. };
  265. BOOST_concept(MutableGraph,(G))
  266. : EdgeMutableGraph<G>
  267. , VertexMutableGraph<G>
  268. {
  269. };
  270. template <class edge_descriptor>
  271. struct dummy_edge_predicate {
  272. bool operator()(const edge_descriptor&) const {
  273. return false;
  274. }
  275. };
  276. BOOST_concept(MutableIncidenceGraph,(G))
  277. : MutableGraph<G>
  278. {
  279. BOOST_CONCEPT_USAGE(MutableIncidenceGraph) {
  280. remove_edge(iter, g);
  281. remove_out_edge_if(u, p, g);
  282. }
  283. G g;
  284. typedef typename graph_traits<G>::edge_descriptor edge_descriptor;
  285. dummy_edge_predicate<edge_descriptor> p;
  286. typename boost::graph_traits<G>::vertex_descriptor u;
  287. typename boost::graph_traits<G>::out_edge_iterator iter;
  288. };
  289. BOOST_concept(MutableBidirectionalGraph,(G))
  290. : MutableIncidenceGraph<G>
  291. {
  292. BOOST_CONCEPT_USAGE(MutableBidirectionalGraph)
  293. {
  294. remove_in_edge_if(u, p, g);
  295. }
  296. G g;
  297. typedef typename graph_traits<G>::edge_descriptor edge_descriptor;
  298. dummy_edge_predicate<edge_descriptor> p;
  299. typename boost::graph_traits<G>::vertex_descriptor u;
  300. };
  301. BOOST_concept(MutableEdgeListGraph,(G))
  302. : EdgeMutableGraph<G>
  303. {
  304. BOOST_CONCEPT_USAGE(MutableEdgeListGraph) {
  305. remove_edge_if(p, g);
  306. }
  307. G g;
  308. typedef typename graph_traits<G>::edge_descriptor edge_descriptor;
  309. dummy_edge_predicate<edge_descriptor> p;
  310. };
  311. BOOST_concept(VertexMutablePropertyGraph,(G))
  312. : VertexMutableGraph<G>
  313. {
  314. BOOST_CONCEPT_USAGE(VertexMutablePropertyGraph) {
  315. v = add_vertex(vp, g);
  316. }
  317. G g;
  318. typename graph_traits<G>::vertex_descriptor v;
  319. typename vertex_property_type<G>::type vp;
  320. };
  321. BOOST_concept(EdgeMutablePropertyGraph,(G))
  322. : EdgeMutableGraph<G>
  323. {
  324. typedef typename graph_traits<G>::edge_descriptor edge_descriptor;
  325. BOOST_CONCEPT_USAGE(EdgeMutablePropertyGraph) {
  326. p = add_edge(u, v, ep, g);
  327. }
  328. G g;
  329. std::pair<edge_descriptor, bool> p;
  330. typename graph_traits<G>::vertex_descriptor u, v;
  331. typename edge_property_type<G>::type ep;
  332. };
  333. BOOST_concept(AdjacencyMatrix,(G))
  334. : Graph<G>
  335. {
  336. typedef typename graph_traits<G>::edge_descriptor edge_descriptor;
  337. BOOST_CONCEPT_USAGE(AdjacencyMatrix) {
  338. p = edge(u, v, g);
  339. const_constraints(g);
  340. }
  341. void const_constraints(const G& cg) {
  342. p = edge(u, v, cg);
  343. }
  344. typename graph_traits<G>::vertex_descriptor u, v;
  345. std::pair<edge_descriptor, bool> p;
  346. G g;
  347. };
  348. BOOST_concept(ReadablePropertyGraph,(G)(X)(Property))
  349. : Graph<G>
  350. {
  351. typedef typename property_map<G, Property>::const_type const_Map;
  352. BOOST_CONCEPT_USAGE(ReadablePropertyGraph)
  353. {
  354. BOOST_CONCEPT_ASSERT((ReadablePropertyMapConcept<const_Map, X>));
  355. const_constraints(g);
  356. }
  357. void const_constraints(const G& cg) {
  358. const_Map pmap = get(Property(), cg);
  359. pval = get(Property(), cg, x);
  360. ignore_unused_variable_warning(pmap);
  361. }
  362. G g;
  363. X x;
  364. typename property_traits<const_Map>::value_type pval;
  365. };
  366. BOOST_concept(PropertyGraph,(G)(X)(Property))
  367. : ReadablePropertyGraph<G, X, Property>
  368. {
  369. typedef typename property_map<G, Property>::type Map;
  370. BOOST_CONCEPT_USAGE(PropertyGraph) {
  371. BOOST_CONCEPT_ASSERT((ReadWritePropertyMapConcept<Map, X>));
  372. Map pmap = get(Property(), g);
  373. pval = get(Property(), g, x);
  374. put(Property(), g, x, pval);
  375. ignore_unused_variable_warning(pmap);
  376. }
  377. G g;
  378. X x;
  379. typename property_traits<Map>::value_type pval;
  380. };
  381. BOOST_concept(LvaluePropertyGraph,(G)(X)(Property))
  382. : ReadablePropertyGraph<G, X, Property>
  383. {
  384. typedef typename property_map<G, Property>::type Map;
  385. typedef typename property_map<G, Property>::const_type const_Map;
  386. BOOST_CONCEPT_USAGE(LvaluePropertyGraph) {
  387. BOOST_CONCEPT_ASSERT((LvaluePropertyMapConcept<const_Map, X>));
  388. pval = get(Property(), g, x);
  389. put(Property(), g, x, pval);
  390. }
  391. G g;
  392. X x;
  393. typename property_traits<Map>::value_type pval;
  394. };
  395. // The *IndexGraph concepts are "semantic" graph concpepts. These can be
  396. // applied to describe any graph that has an index map that can be accessed
  397. // using the get(*_index, g) method. For example, adjacency lists with
  398. // VertexSet == vecS are implicitly models of this concept.
  399. //
  400. // NOTE: We could require an associated type vertex_index_type, but that
  401. // would mean propagating that type name into graph_traits and all of the
  402. // other graph implementations. Much easier to simply call it unsigned.
  403. BOOST_concept(VertexIndexGraph,(Graph))
  404. {
  405. BOOST_CONCEPT_USAGE(VertexIndexGraph)
  406. {
  407. typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
  408. typedef typename property_map<Graph, vertex_index_t>::type Map;
  409. typedef unsigned Index; // This could be Graph::vertex_index_type
  410. Map m = get(vertex_index, g);
  411. Index x = get(vertex_index, g, Vertex());
  412. ignore_unused_variable_warning(m);
  413. ignore_unused_variable_warning(x);
  414. // This is relaxed
  415. renumber_vertex_indices(g);
  416. const_constraints(g);
  417. }
  418. void const_constraints(const Graph& g_)
  419. {
  420. typedef typename property_map<Graph, vertex_index_t>::const_type Map;
  421. Map m = get(vertex_index, g_);
  422. ignore_unused_variable_warning(m);
  423. }
  424. private:
  425. Graph g;
  426. };
  427. BOOST_concept(EdgeIndexGraph,(Graph))
  428. {
  429. BOOST_CONCEPT_USAGE(EdgeIndexGraph)
  430. {
  431. typedef typename graph_traits<Graph>::edge_descriptor Edge;
  432. typedef typename property_map<Graph, edge_index_t>::type Map;
  433. typedef unsigned Index; // This could be Graph::vertex_index_type
  434. Map m = get(edge_index, g);
  435. Index x = get(edge_index, g, Edge());
  436. ignore_unused_variable_warning(m);
  437. ignore_unused_variable_warning(x);
  438. // This is relaxed
  439. renumber_edge_indices(g);
  440. const_constraints(g);
  441. }
  442. void const_constraints(const Graph& g_)
  443. {
  444. typedef typename property_map<Graph, edge_index_t>::const_type Map;
  445. Map m = get(edge_index, g_);
  446. ignore_unused_variable_warning(m);
  447. }
  448. private:
  449. Graph g;
  450. };
  451. BOOST_concept(ColorValue,(C))
  452. : EqualityComparable<C>
  453. , DefaultConstructible<C>
  454. {
  455. BOOST_CONCEPT_USAGE(ColorValue) {
  456. c = color_traits<C>::white();
  457. c = color_traits<C>::gray();
  458. c = color_traits<C>::black();
  459. }
  460. C c;
  461. };
  462. BOOST_concept(BasicMatrix,(M)(I)(V))
  463. {
  464. BOOST_CONCEPT_USAGE(BasicMatrix) {
  465. V& elt = A[i][j];
  466. const_constraints(A);
  467. ignore_unused_variable_warning(elt);
  468. }
  469. void const_constraints(const M& cA) {
  470. const V& elt = cA[i][j];
  471. ignore_unused_variable_warning(elt);
  472. }
  473. M A;
  474. I i, j;
  475. };
  476. // The following concepts describe aspects of numberic values and measure
  477. // functions. We're extending the notion of numeric values to include
  478. // emulation for zero and infinity.
  479. BOOST_concept(NumericValue,(Numeric))
  480. {
  481. BOOST_CONCEPT_USAGE(NumericValue)
  482. {
  483. BOOST_CONCEPT_ASSERT(( DefaultConstructible<Numeric> ));
  484. BOOST_CONCEPT_ASSERT(( CopyConstructible<Numeric> ));
  485. numeric_values<Numeric>::zero();
  486. numeric_values<Numeric>::infinity();
  487. }
  488. };
  489. BOOST_concept(DegreeMeasure,(Measure)(Graph))
  490. {
  491. BOOST_CONCEPT_USAGE(DegreeMeasure)
  492. {
  493. typedef typename Measure::degree_type Degree;
  494. typedef typename Measure::vertex_type Vertex;
  495. Degree d = m(Vertex(), g);
  496. ignore_unused_variable_warning(d);
  497. }
  498. private:
  499. Measure m;
  500. Graph g;
  501. };
  502. BOOST_concept(DistanceMeasure,(Measure)(Graph))
  503. {
  504. BOOST_CONCEPT_USAGE(DistanceMeasure)
  505. {
  506. typedef typename Measure::distance_type Distance;
  507. typedef typename Measure::result_type Result;
  508. Result r = m(Distance(), g);
  509. ignore_unused_variable_warning(r);
  510. }
  511. private:
  512. Measure m;
  513. Graph g;
  514. };
  515. } /* namespace concepts */
  516. using boost::concepts::MultiPassInputIteratorConcept;
  517. // Graph concepts
  518. using boost::concepts::GraphConcept;
  519. using boost::concepts::IncidenceGraphConcept;
  520. using boost::concepts::BidirectionalGraphConcept;
  521. using boost::concepts::AdjacencyGraphConcept;
  522. using boost::concepts::VertexListGraphConcept;
  523. using boost::concepts::EdgeListGraphConcept;
  524. using boost::concepts::VertexAndEdgeListGraphConcept;
  525. using boost::concepts::EdgeMutableGraphConcept;
  526. using boost::concepts::VertexMutableGraphConcept;
  527. using boost::concepts::MutableGraphConcept;
  528. using boost::concepts::MutableIncidenceGraphConcept;
  529. using boost::concepts::MutableBidirectionalGraphConcept;
  530. using boost::concepts::MutableEdgeListGraphConcept;
  531. using boost::concepts::VertexMutablePropertyGraphConcept;
  532. using boost::concepts::EdgeMutablePropertyGraphConcept;
  533. using boost::concepts::AdjacencyMatrixConcept;
  534. using boost::concepts::ReadablePropertyGraphConcept;
  535. using boost::concepts::PropertyGraphConcept;
  536. using boost::concepts::LvaluePropertyGraphConcept;
  537. using boost::concepts::VertexIndexGraphConcept;
  538. using boost::concepts::EdgeIndexGraphConcept;
  539. // Utility concepts
  540. using boost::concepts::ColorValueConcept;
  541. using boost::concepts::BasicMatrixConcept;
  542. using boost::concepts::NumericValueConcept;
  543. using boost::concepts::DistanceMeasureConcept;
  544. using boost::concepts::DegreeMeasureConcept;
  545. } /* namespace boost */
  546. #include <boost/concept/detail/concept_undef.hpp>
  547. #endif /* BOOST_GRAPH_CONCEPTS_H */