Macaulay2 » Documentation
Packages » StatGraphs :: bigraph(...,Singletons=>...)
next | previous | forward | backward | up | index | toc

bigraph(...,Singletons=>...) -- optional input, accepts the list of isolated vertices in a bigraph

Description

i1 : bigraph({{1,2},{2,3},{3,4}}, Singletons => {5,6,7})

o1 = Bigraph{1 => {2}   }
             2 => {1, 3}
             3 => {2, 4}
             4 => {3}
             5 => {}
             6 => {}
             7 => {}

o1 : Bigraph

See also

Functions with optional argument named Singletons:

  • bigraph(...,Singletons=>...) -- optional input, accepts the list of isolated vertices in a bigraph
  • digraph(...,Singletons=>...) (missing documentation)
  • graph(...,Singletons=>...) -- see graph -- Constructs a simple graph

Further information

  • Default value: null
  • Function: bigraph -- create a bigraph
  • Option key: Singletons (missing documentation)

The source of this document is in StatGraphs.m2:464:0.