本文整理汇总了Python中sage.combinat.posets.posets.Poset.random_order_ideal方法的典型用法代码示例。如果您正苦于以下问题:Python Poset.random_order_ideal方法的具体用法?Python Poset.random_order_ideal怎么用?Python Poset.random_order_ideal使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sage.combinat.posets.posets.Poset
的用法示例。
在下文中一共展示了Poset.random_order_ideal方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: random_element
# 需要导入模块: from sage.combinat.posets.posets import Poset [as 别名]
# 或者: from sage.combinat.posets.posets.Poset import random_order_ideal [as 别名]
def random_element(self):
r"""
Return a uniformly random element of ``self``.
ALGORITHM:
This uses the
:meth:`~sage.combinat.posets.posets.FinitePoset.random_order_ideal`
method and the natural bijection with plane partitions.
EXAMPLES::
sage: P = PlanePartitions((4,3,5))
sage: P.random_element()
Plane partition [[4, 3, 3], [4, 0, 0], [2, 0, 0], [0, 0, 0]]
"""
def leq(thing1, thing2):
return all(thing1[i] <= thing2[i] for i in range(len(thing1)))
elem = [(i,j,k) for i in range(self._box[0]) for j in range(self._box[1])
for k in range(self._box[2])]
myposet = Poset((elem, leq))
R = myposet.random_order_ideal()
Z = [[0 for i in range(self._box[1])] for j in range(self._box[0])]
for C in R:
Z[C[0]][C[1]] += 1
return self.element_class(self, Z, check=False)