2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-31 08:12:14 +00:00

Use named parameters where appropriate

[SVN r31132]
This commit is contained in:
Douglas Gregor
2005-09-27 14:01:18 +00:00
parent cd346002ea
commit 97e891fee0

View File

@@ -28,7 +28,7 @@ biconnected_components
std::list<typename Graph::Vertex> art_points;
boost::biconnected_components(g, component, std::back_inserter(art_points),
g.get_vertex_index_map());
boost::vertex_index_map(g.get_vertex_index_map()));
boost::python::list result;
for (typename std::list<typename Graph::Vertex>::iterator i
= art_points.begin(); i != art_points.end(); ++i)
@@ -42,7 +42,8 @@ articulation_points(const Graph& g)
{
std::list<typename Graph::Vertex> art_points;
boost::python::list result;
boost::articulation_points(g, std::back_inserter(art_points));
boost::articulation_points(g, std::back_inserter(art_points),
boost::vertex_index_map(g.get_vertex_index_map()));
for (typename std::list<typename Graph::Vertex>::iterator i
= art_points.begin(); i != art_points.end(); ++i)
result.append(*i);