| 89 | /** Add the incoming edges of vertex u to vertex v. */ |
| 90 | template<typename Graph> |
| 91 | void |
| 92 | copy_in_edges(Graph& g, typename Graph::vertex_descriptor u, typename Graph::vertex_descriptor v) |
| 93 | { |
| 94 | copy_out_edges(g, get(vertex_complement, g, u), get(vertex_complement, g, v)); |
| 95 | } |
| 96 | |
| 97 | /** Assemble a path of unambigous out edges starting at vertex u. |
| 98 | * u itself is not copied to out. |
no test coverage detected