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

Add support for dijkstra_shortest_paths

[SVN r27546]
This commit is contained in:
Douglas Gregor
2005-03-03 20:11:12 +00:00
parent a8488328b1
commit 961a7d09cc
5 changed files with 186 additions and 0 deletions

View File

@@ -513,6 +513,8 @@ void export_basic_graph(const char* name)
// Vertex property maps
declare_readable_property_map<VertexIndexMap>
::declare("vertex_index_map");
declare_property_map<vector_property_map<Vertex, VertexIndexMap> >
::declare("vertex_vertex_map");
declare_property_map<vector_property_map<double, VertexIndexMap> >
::declare("vertex_double_map");
declare_property_map<vector_property_map<int, VertexIndexMap> >
@@ -525,6 +527,8 @@ void export_basic_graph(const char* name)
// Edge property maps
declare_readable_property_map<EdgeIndexMap>
::declare("edge_index_map");
declare_property_map<vector_property_map<Edge, EdgeIndexMap> >
::declare("edge_edge_map");
declare_property_map<vector_property_map<double, EdgeIndexMap> >
::declare("edge_double_map");
declare_property_map<vector_property_map<int, EdgeIndexMap> >