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

Method add_edge

Graph/DirectedGraph.h:254–258  ·  view source on GitHub ↗

Add an edge to this vertex. */

Source from the content-addressed store, hash-verified

252
253 /** Add an edge to this vertex. */
254 bool add_edge(vertex_descriptor v, const edge_property_type& ep)
255 {
256 m_edges.push_back(Edge(v, ep));
257 return true;
258 }
259
260 /** Remove the edge to v from this vertex. */
261 void remove_edge(vertex_descriptor v)

Callers

nothing calls this directly

Calls 2

EdgeClass · 0.70
push_backMethod · 0.45

Tested by

no test coverage detected