[BGL] how to use write_graphviz_dp with graph bundle properties

Hello. I know how to use write_graphviz_dp with vertices and edges bundle
properties but i can't figure out how to print the graph_bundle property of
a graph.
i have the following code where the line with the error is commented:
#include

On Sat, 9 Nov 2013, Pablo Madoery wrote:
Hello. I know how to use write_graphviz_dp with vertices and edges bundle properties but i can't figure out how to print the graph_bundle property of a graph.
(snip)
void printGraph(Graph graph, string file) { ofstream ofs(file.c_str()); dynamic_properties dp; dp.property("node_id", get(vertex_index, graph)); dp.property("label", get(&EdgeInfo::weight, graph)); ///dp.property("label", get(&graph[graph_bundle].duration)); ->error write_graphviz_dp(ofs, graph, dp); }
There does not appear to be a way to write graph properties with write_graphviz_dp (although there is a way to read them). I'm not sure why, so you might want to file a bug report about that so I'll remember to fix it. -- Jeremiah Willcock

On Sat, 9 Nov 2013, Jeremiah Willcock wrote:
On Sat, 9 Nov 2013, Pablo Madoery wrote:
Hello. I know how to use write_graphviz_dp with vertices and edges bundle properties but i can't figure out how to print the graph_bundle property of a graph.
(snip)
void printGraph(Graph graph, string file) { ofstream ofs(file.c_str()); dynamic_properties dp; dp.property("node_id", get(vertex_index, graph)); dp.property("label", get(&EdgeInfo::weight, graph)); ///dp.property("label", get(&graph[graph_bundle].duration)); ->error write_graphviz_dp(ofs, graph, dp); }
I have now fixed this problem in the Boost trunk. To write a graph
property, here is the kind of property call you should use:
dp.property("label",
make_static_property_map

It works !!!!!!!
Thank you very much !!!!!!!!!
2013/11/9 Jeremiah Willcock
On Sat, 9 Nov 2013, Jeremiah Willcock wrote:
On Sat, 9 Nov 2013, Pablo Madoery wrote:
Hello. I know how to use write_graphviz_dp with vertices and edges
bundle properties but i can't figure out how to print the graph_bundle property of a graph.
(snip)
void printGraph(Graph graph, string file)
{ ofstream ofs(file.c_str()); dynamic_properties dp; dp.property("node_id", get(vertex_index, graph)); dp.property("label", get(&EdgeInfo::weight, graph)); ///dp.property("label", get(&graph[graph_bundle].duration)); ->error write_graphviz_dp(ofs, graph, dp); }
I have now fixed this problem in the Boost trunk. To write a graph property, here is the kind of property call you should use:
dp.property("label", make_static_property_map
(get_property(graph, &GraphInfo::duration))); -- Jeremiah Willcock _______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
participants (2)
-
Jeremiah Willcock
-
Pablo Madoery