MCPcopy Create free account
hub / github.com/BirolLab/abyss / remove_edge

Method remove_edge

Graph/ContigGraph.h:203–210  ·  view source on GitHub ↗

Remove the edge (u,v) from this graph. */

Source from the content-addressed store, hash-verified

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)

Callers 1

remove_edgeFunction · 0.45

Calls 2

getFunction · 0.70
remove_edgeFunction · 0.70

Tested by

no test coverage detected