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

Method out_degree

Graph/DirectedGraph.h:482–487  ·  view source on GitHub ↗

Return the out degree of vertex u. */

Source from the content-addressed store, hash-verified

480
481 /** Return the out degree of vertex u. */
482 degree_size_type out_degree(vertex_descriptor u) const
483 {
484 vertices_size_type ui = get(vertex_index, *this, u);
485 assert(ui < num_vertices());
486 return m_vertices[ui].out_degree();
487 }
488
489 /** Return the nth vertex. */
490 static vertex_descriptor vertex(vertices_size_type n)

Callers 1

out_degreeFunction · 0.45

Calls 2

getFunction · 0.70
num_verticesFunction · 0.70

Tested by

no test coverage detected