Obtaining all posets from binary trees up to isomorphism
One can obtain all posets of binary trees for a given n as follows in Sage:
n=4
posets = [bt.to_poset() for bt in BinaryTrees(n)]
Is there a quick method to obtain the list of all such posets up to isomorphism?