$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] read_graphviz with a simple graph
From: David Doria (daviddoria_at_[hidden])
Date: 2011-06-22 13:04:14
If I have a graph with no vertex properties or edge properties:
adjacency_list<vecS, vecS, undirectedS>
can I read a .dot file into it with read_graphviz?
I tried:
dynamic_properties dp;
Graph g;
read_graphviz(fileinput, g, dp);
but it throws an exception "Property not found: node_id".
I tried to add
property_map<Graph, vertex_name_t>::type name = get(vertex_name, g);
dp.property("node_id",name);
but I get a compiler error "No match for operator<<"
Any suggestions?
Thanks,
David