Skip to content

Commit 2c1fd94

Browse files
committed
Some last details and adding stuff to the documentation.
1 parent deaf9d9 commit 2c1fd94

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

src/doc/en/reference/combinat/module_list.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ Comprehensive Module List
362362
sage/combinat/tableau
363363
sage/combinat/tableau_residues
364364
sage/combinat/tableau_tuple
365+
sage/combinat/tabloid
365366
sage/combinat/tamari_lattices
366367
sage/combinat/tiling
367368
sage/combinat/tools

src/sage/combinat/algebraic_combinatorics.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
----------------------------------------
1313
1414
- :ref:`sage.combinat.catalog_partitions`
15-
- :class:`~sage.combinat.gelfand_tsetlin_patterns.GelfandTsetlinPattern`, :class:`~sage.combinat.gelfand_tsetlin_patterns.GelfandTsetlinPatterns`
15+
- :class:`~sage.combinat.gelfand_tsetlin_patterns.GelfandTsetlinPattern`,
16+
:class:`~sage.combinat.gelfand_tsetlin_patterns.GelfandTsetlinPatterns`
1617
- :class:`~sage.combinat.knutson_tao_puzzles.KnutsonTaoPuzzleSolver`
1718
1819
Groups and Algebras
@@ -39,7 +40,7 @@
3940
- :ref:`sage.combinat.cluster_algebra_quiver.all`
4041
- :class:`~sage.combinat.kazhdan_lusztig.KazhdanLusztigPolynomial`
4142
- :class:`~sage.combinat.symmetric_group_representations.SymmetricGroupRepresentation`
42-
- :class:`~sage.combinat.specht_module.SpechtModule`
43+
- :ref:`sage.combinat.specht_module`
4344
- :ref:`sage.combinat.yang_baxter_graph`
4445
- :ref:`sage.combinat.hall_polynomial`
4546
- :ref:`sage.combinat.key_polynomial`

src/sage/combinat/catalog_partitions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
- :ref:`sage.combinat.skew_partition`
99
- :ref:`sage.combinat.partition_tuple`
1010
- :ref:`sage.combinat.superpartition`
11+
- :ref:`sage.combinat.tableau`
1112
- :ref:`sage.combinat.tableau_tuple`
13+
- :ref:`sage.combinat.tabloid`
1214
- :ref:`sage.combinat.skew_tableau`
1315
- :ref:`sage.combinat.ribbon`
1416
- :ref:`sage.combinat.ribbon_tableau`

src/sage/combinat/skew_tableau.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
- Mike Hansen: Initial version
77
- Travis Scrimshaw, Arthur Lubovsky (2013-02-11):
88
Factored out ``CombinatorialClass``
9-
- Trevor K. Karn (2022-08-03): added `backward_slide`
9+
- Trevor K. Karn (2022-08-03): added ``backward_slide``
1010
"""
1111
# ****************************************************************************
1212
# Copyright (C) 2007 Mike Hansen <[email protected]>,
13-
# Copyright (C) 2013 Travis Scrimshaw <tscrim at ucdavis.edu>
13+
# Copyright (C) 2013 Travis Scrimshaw <tcscrims at gmail.com>
1414
# Copyright (C) 2013 Arthur Lubovsky
1515
#
1616
# Distributed under the terms of the GNU General Public License (GPL)

src/sage/combinat/specht_module.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,8 @@ def _acted_upon_(self, x, self_on_left=False):
527527

528528
class TabloidModule(CombinatorialFreeModule, SymmetricGroupRepresentation):
529529
r"""
530-
The vector space of all tabloids with the natural symmetric group action.
530+
The vector space of all :class:`~sage.combinat.tabloid.Tabloids` of a
531+
fixed shape with the natural symmetric group action.
531532
"""
532533
@staticmethod
533534
def __classcall_private__(cls, SGA, shape):
@@ -897,7 +898,7 @@ def __init__(self, specht_module):
897898
sage: SGA = SymmetricGroupAlgebra(QQ, 5)
898899
sage: SM = SGA.specht_module([3,2])
899900
sage: U = SM.maximal_submodule()
900-
sage: TestSuite(U).run(skip="_test_cardinality") # skip due to bug for 0 dimensional modules
901+
sage: TestSuite(U).run()
901902
sage: U.dimension()
902903
0
903904
"""

0 commit comments

Comments
 (0)