Opened 11 years ago
Closed 11 years ago
#6313 closed Bugs (fixed)
some small fixes to get reverse_graph to work in trunk
Reported by: | Owned by: | Jeremiah Willcock | |
---|---|---|---|
Milestone: | To Be Determined | Component: | graph |
Version: | Boost 1.48.0 | Severity: | Problem |
Keywords: | reverse_graph | Cc: |
Description
There seems to be a mistake in the operator[] to access edge (or vertex) bundles using the new reverse_graph_edge_descriptor (or the old graph_vertex_descriptor).
instead of graph[convert(descriptor)] it says convert(graph[descriptor]) which does not compile.
Also, I am using detail::reverse_graph_edge_property_map as a reverse graph adaptor for edge_property_maps, but ran into missing default constructor and const ref operator[](key)const{}, which are added in the patch.
Attachments (1)
Change History (2)
by , 11 years ago
Attachment: | reverse_graph.patch added |
---|
comment:1 by , 11 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
patch that modifies operator[] accessing edge and vertex bundles. And extending reverse_graph_edge_property_map