i1 : P = poset({a,b,c,d,e,f,g}, {(a,b), (a,c), (a,d), (b,e), (c,e), (c,f), (d,f), (e,g), (f,g)})
o1 = Poset{cache => CacheTable{} }
GroundSet => {a, b, c, d, e, f, g}
RelationMatrix => | 1 1 1 1 1 1 1 |
| 0 1 0 0 1 0 1 |
| 0 0 1 0 1 1 1 |
| 0 0 0 1 0 1 1 |
| 0 0 0 0 1 0 1 |
| 0 0 0 0 0 1 1 |
| 0 0 0 0 0 0 1 |
Relations => {(a, b), (a, c), (a, d), (b, e), (c, e), (c, f), (d, f), (e, g), (f, g)}
o1 : Poset
|
i2 : meetIrreducibles(P)
o2 = {d, e, f, g, b}
o2 : List
|