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

Method remove_vertex

Graph/ContigGraph.h:171–175  ·  view source on GitHub ↗

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. */

Source from the content-addressed store, hash-verified

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>

Callers 4

remove_vertexFunction · 0.45
remove_vertexFunction · 0.45
remove_vertex_ifFunction · 0.45
removeContigFunction · 0.45

Calls 2

remove_vertexFunction · 0.70
getFunction · 0.70

Tested by

no test coverage detected