networks
departures
neighboring vertices found along outgoing edges
Calling Sequence
Parameters
Description
Examples
departures(v, G)
departures(G)
v
-
vertex of G
G
graph or network
Important: The networks package has been deprecated. Use the superseding command GraphTheory[Departures] instead.
Given a vertex v of a graph G, this routine returns the set of vertices which are at the head of edges directed out of v.
Undirected edges are treated as if they were bidirectional.
The arrivals and departure information is constructed from the neighbors table which is automatically maintained by the graph primitives such as addedge() and delete().
When no vertices are specified a departures table, indexed by vertices, is constructed. This table is not part of the graph data structure so that the graph remains unaffected by assignments to the table.
This routine is normally loaded using the command with(networks) but may also be referenced using the full name networks[departures](...).
with⁡networks:
G≔complete⁡4:
addvertex⁡0,G
0
connect⁡0,1,G,directed
e7
arrivals⁡0,G
∅
departures⁡0,G
1
neighbors⁡0,G
arrivals⁡1,G
0,2,3,4
departures⁡1,G
2,3,4
neighbors⁡1,G
arrivals⁡G
table⁡0=∅,1=0,2,3,4,2=1,3,4,3=1,2,4,4=1,2,3
departures⁡G
table⁡0=1,1=2,3,4,2=1,3,4,3=1,2,4,4=1,2,3
neighbors⁡G
table⁡0=1,1=0,2,3,4,2=1,3,4,3=1,2,4,4=1,2,3
See Also
GraphTheory
GraphTheory[Departures]
networks(deprecated)[arrivals]
networks(deprecated)[neighbors]
Download Help Document