Hi,
I've got a huge graph with typed edge (i.e. edge with a type property). Say
typedef adjacency_list<vecS, vecS, vertex_prop, edge_prop> Graph;
The "type" of the edge is a member of edge_prop and has a value in {A,B,C,D},
I'd like to run the breadth first search algorithm considering only edges of type A or B.
How would you do that ?
Best,
Ugo