i1 : P = poset ({a,b,c,d},{(a,b), (b,c), (b,d)})
o1 = Poset{cache => CacheTable{} }
GroundSet => {a, b, c, d}
RelationMatrix => | 1 1 1 1 |
| 0 1 1 1 |
| 0 0 1 0 |
| 0 0 0 1 |
Relations => {(a, b), (b, c), (b, d)}
o1 : Poset
|
i2 : G = hasseDiagram(P)
o2 = Digraph{a => set {b} }
b => set {c, d}
c => set {}
d => set {}
o2 : Digraph
|