| 218 | /** Assemble unambiguous paths. Write the paths to out. */ |
| 219 | template<typename Graph, typename OutIt> |
| 220 | OutIt |
| 221 | assemble(Graph& g, OutIt out) |
| 222 | { |
| 223 | typedef typename graph_traits<Graph>::edge_descriptor edge_descriptor; |
| 224 | return assemble_if(g, out, True<edge_descriptor>()); |
| 225 | } |
| 226 | |
| 227 | /** Return true if the edge e is +ve sense. */ |
| 228 | template<typename Graph> |
nothing calls this directly
no test coverage detected