示例#1
0
    def first(self):
        """
        Return the first standard ribbon of ``self``.

        EXAMPLES::

            sage: StandardRibbonShapedTableaux([2,2]).first()
            [[None, 2, 4], [1, 3]]
        """
        return self.from_permutation(descents_composition_first(self.shape))
示例#2
0
文件: ribbon.py 项目: bgxcpku/sagelib
 def first(self):
     """
     Returns the first standard ribbon of ribbon shape shape.
     
     EXAMPLES::
     
         sage: StandardRibbons([2,2]).first()
         [[2, 4], [1, 3]]
     """
     return from_permutation(permutation.descents_composition_first(self.shape))
示例#3
0
    def first(self):
        """
        Return the first standard ribbon of ``self``.

        EXAMPLES::

            sage: StandardRibbonShapedTableaux([2,2]).first()
            [[None, 2, 4], [1, 3]]
        """
        return self.from_permutation(descents_composition_first(self.shape))
示例#4
0
    def first(self):
        """
        Returns the first standard ribbon of ribbon shape shape.

        EXAMPLES::

            sage: StandardRibbons([2,2]).first()
            [[2, 4], [1, 3]]
        """
        return from_permutation(permutation.descents_composition_first(self.shape))