Macaulay2 » Documentation
Packages » StatGraphs :: nonneighbors(MixedGraph,Thing)
next | previous | forward | backward | up | index | toc

nonneighbors(MixedGraph,Thing) -- return the neighbors of a vertex of a mixed graph

Synopsis

Description

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

See also

Ways to use this method: