i2 : g = graph {a*b,b*c,c*d,d*a} -- the four cycle
o2 = Graph{edges => {{a, b}, {b, c}, {a, d}, {c, d}}}
ring => S
vertices => {a, b, c, d}
o2 : Graph
|
i4 : h = hyperGraph{a*b*c}
o4 = HyperGraph{edges => {{a, b, c}} }
ring => S
vertices => {a, b, c, d}
o4 : HyperGraph
|