i1 : D = digraph({{a, {b,c}}, {b,{d,e}}, {c, {e,h}}, {d, {f}}, {e, {f,g}},
{f, {}}, {g, {}}, {h, {}}})
o1 = Digraph{a => set {b, c}}
b => set {d, e}
c => set {e, h}
d => set {f}
e => set {f, g}
f => set {}
g => set {}
h => set {}
o1 : Digraph
|
i2 : G = graph({{a,b},{c,d},{a,c},{d,h},{b,h}})
o2 = Graph{a => set {b, c}}
b => set {a, h}
c => set {a, d}
d => set {c, h}
h => set {b, d}
o2 : Graph
|
i4 : H = mixedGraph(G,D,B)
o4 = MixedGraph{Bigraph => Bigraph{c => set {d}} }
d => set {c}
e => set {f}
f => set {e}
Digraph => Digraph{a => set {b, c}}
b => set {d, e}
c => set {e, h}
d => set {f}
e => set {f, g}
f => set {}
g => set {}
h => set {}
Graph => Graph{a => set {b, c}}
b => set {a, h}
c => set {a, d}
d => set {c, h}
h => set {b, d}
o4 : MixedGraph
|