
23 Oct
2009
23 Oct
'09
12:04 a.m.
Trying to replace vector with std::map as follows. Replace typedef string Colour; struct edge_properties { vector < set< Colour
> eColours;
}
with
typedef string Colour;
struct edge_properties
{
std::map < int, set< Colour > > emColours;
}
Using
property_map < graph_t, map < int,