« Return to Thread: [BGL] Access bundle graph properties

Re: [BGL] Access bundle graph properties

by Ferng, Andrew D :: Rate this Message:

Reply to Author | View in Thread

This might help...
http://www.boost.org/libs/graph/doc/bundles.html 



-----Original Message-----
From: Ioannis Nousias [mailto:s0238762@...]
Sent: Monday, February 18, 2008 3:55 PM
To: boost-users@...
Subject: [Boost-users] [BGL] Access bundle graph properties

How does one access a bundle graph property in adjacency_list ?

for example

struct VertexProperties
{
    int        index;
    bool     status;
};

struct EdgeProperties
{
    int        index;
    bool     status;
};

struct GraphProperties
{
    int something;
};

boost::adjacency_list
<
    boost::listS,
    boost::vecS,
    boost::directedS,
    VertexProperties,
    EdgeProperties,
    GraphProperties
 > graph;


if 'v' is a vertex then I can do 'grap[v].status' to get that vertex
property. But what about the graph properties? I've tried
'graph.something' but that didn't work :(

Any suggestions ?

regards,
Ioannis
_______________________________________________
Boost-users mailing list
Boost-users@...
http://lists.boost.org/mailman/listinfo.cgi/boost-users

 « Return to Thread: [BGL] Access bundle graph properties