MCPcopy Index your code
hub / github.com/IBM/Project_CodeNet / outdegree

Function outdegree

tools/json-graph/src/jgflib.c:62–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62unsigned outdegree(Node n)
63{
64 unsigned count = 0;
65 Edge e;
66 for (e = n->outgoing; e; e = e->next_adj_out)
67 count++;
68 return count;
69}
70
71static void edge_add_attr(Edge e, Attr a)
72{

Callers 2

node_infoFunction · 0.85
show_spt_auxFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected