nonneighbors (G,v)
The nonneighbors of v are the all the vertices u such that u,v is not 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 : nonneighbors (G,1) o2 = set {4, 2} o2 : Set
i3 : nonneighbors (G,2) o3 = set {4, 1, 3} o3 : Set