Remove vertex v from this graph. It is assumed that there * are no edges to or from vertex v. It is best to call * clear_vertex before remove_vertex. */
| 169 | * clear_vertex before remove_vertex. |
| 170 | */ |
| 171 | void remove_vertex(vertex_descriptor v) |
| 172 | { |
| 173 | G::remove_vertex(v); |
| 174 | G::remove_vertex(get(vertex_complement, *this, v)); |
| 175 | } |
| 176 | |
| 177 | /** Add edge (u,v) to this graph. */ |
| 178 | std::pair<edge_descriptor, bool> |
no test coverage detected