| 46 | /** Return whether the incoming edge of vertex u is contiguous. */ |
| 47 | template<typename Graph> |
| 48 | bool |
| 49 | contiguous_in(const Graph& g, typename graph_traits<Graph>::vertex_descriptor u) |
| 50 | { |
| 51 | return contiguous_out(g, get(vertex_complement, g, u)); |
| 52 | } |
| 53 | |
| 54 | /** Add the outgoing edges of vertex u to vertex uout. */ |
| 55 | template<typename Graph> |
no test coverage detected