Remove the edge (u,v) from this graph. */
| 201 | |
| 202 | /** Remove the edge (u,v) from this graph. */ |
| 203 | void remove_edge(vertex_descriptor u, vertex_descriptor v) |
| 204 | { |
| 205 | vertex_descriptor uc = get(vertex_complement, *this, u); |
| 206 | vertex_descriptor vc = get(vertex_complement, *this, v); |
| 207 | G::remove_edge(u, v); |
| 208 | if (u != vc) |
| 209 | G::remove_edge(vc, uc); |
| 210 | } |
| 211 | |
| 212 | /** Remove the edge e from this graph. */ |
| 213 | void remove_edge(edge_descriptor e) |
no test coverage detected