On Thu, Jun 23, 2011 at 4:06 PM, Jeremiah Willcock wrote:
On Thu, 23 Jun 2011, Jeremiah Willcock wrote:
On Wed, 22 Jun 2011, David Doria wrote:
I think you will need some kind of property to store the vertex names
from
Graphviz; you might be able to use null_property_map for that (from
) though.
-- Jeremiah Willcock
Hm, I tried:
#include
...
typedef boost::adjacency_list < boost::vecS, boost::vecS,
boost::directedS, VertexProperty> Graph;
boost::dynamic_properties dp;
dp.property("node_id",
boost::make_null_property() );
but I get a compiler error on that last line (i.e. if I comment it the
error goes away) that says:
"error: no matching function for call to
'get(boost::null_property_map
&, unsigned int)"
I don't know what that means ?
David