I defined my graph like this:
but when I want to access property nCommBord of Edge, there seems to be wrong with my property_map type definition. Anyone can point out for me, what is the right version(I cannot seem to find any comment on this kind of usage)?
struct Node
{
int label;
int mode[3];
//...;
};
struct Edge
{
double nCommBord;
};
typedef boost::adjacency_list<
boost::setS, boost::vecS, boost::undirectedS,
Node, Edge> Graph;