2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-29 07:32:21 +00:00

Fixes and tweaks

[SVN r27703]
This commit is contained in:
Douglas Gregor
2005-03-16 14:15:25 +00:00
parent 0e0507520b
commit 0d9a96fec4
3 changed files with 48 additions and 7 deletions

View File

@@ -348,7 +348,11 @@ class basic_graph
inherited& base() { return *this; }
const inherited& base() const { return *this; }
private:
protected:
void renumber_vertices();
void renumber_edges();
private:
std::vector<vertex_descriptor> index_to_vertex;
std::vector<edge_descriptor> index_to_edge;
dynamic_properties dp;