|
CGAL 4.11.2 - CGAL and the Boost Graph Library
|
The concept VertexListGraph refines the concept Graph and adds the requirement for traversal of all vertices in a graph.
Graph Related Functions | |
(Note that these are not member functions.) | |
| template<typename VertexListGraph > | |
| std::pair< boost::graph_traits < VertexListGraph > ::vertex_iterator, boost::graph_traits < VertexListGraph > ::vertex_iterator > | vertices (const VertexListGraph &g) |
| template<typename VertexListGraph > | |
| boost::graph_traits < VertexListGraph > ::ver_size_type | num_vertices (const VertexListGraph &g) |
|
related |
returns an upper bound of the number of vertices of the graph.
num_vertices() may return a number larger than std::distance(vertices(g).first, vertices(g).second). This is the case for implementations only marking vertices deleted in the vertex container.
|
related |
returns an iterator range over all vertices.