The neighbors of v are the all the vertices u such that u,v is an undirected edge in G.
i1 : G = mixedGraph(graph{{3,1}},digraph {{1,2},{2,3}},bigraph {{3,4},{2,4}})
o1 = MixedGraph{Bigraph => Bigraph{2 => {4} }}
3 => {4}
4 => {3, 2}
Digraph => Digraph{1 => {2}}
2 => {3}
3 => {}
Graph => Graph{1 => {3}}
3 => {1}
o1 : MixedGraph
|
i2 : neighbors (G,1)
o2 = set {3}
o2 : Set
|
i3 : neighbors (G,2)
o3 = set {}
o3 : Set
|