I have a huge graph with a typed edge (i.e. an edge with the type property). Tell me
typedef adjacency_list<vecS, vecS, vertex_prop, edge_prop> Graph;
The "type" of the rib is a member of edge_prop and has a value in {A, B, C, D},
I would like to run a width-width search algorithm, considering only edges of type A or B.
How would you do that?
source share