nonoutneighbors
In graph theory, for a directed graph G = (V, E), the out-neighborhood N^+(v) of a vertex v ∈ V is the set of vertices w for which there is a directed edge from v to w, i.e., N^+(v) = { w ∈ V | (v, w) ∈ E }. The nonoutneighbors of v are the vertices not connected by an outgoing edge from v, i.e., the complement of the out-neighborhood: nonoutneighbors(v) = V \ N^+(v).
The precise form of nonoutneighbors depends on conventions about self-loops. If loops are allowed and (v, v)
Example: In a directed graph with vertices {a, b, c, d} and edges a → b, a → c,
Relation to other concepts: nonoutneighbors form the complement of the out-neighborhood within the vertex set V.
See also: out-neighborhood, in-neighborhood, adjacency matrix, reachability.