Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Change doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
ChamanAgrawal committed Jul 23, 2019
1 parent 05cb2f0 commit 5b622eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/sage/combinat/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@
lazy_import('sage.combinat.shifted_primed_tableau', ['ShiftedPrimedTableaux',
'ShiftedPrimedTableau'])

#SuperTableaux
from .super_tableau import *

#Words
from .words.all import *

Expand Down
3 changes: 2 additions & 1 deletion src/sage/combinat/rsk.py
Original file line number Diff line number Diff line change
Expand Up @@ -2338,7 +2338,8 @@ def _forward_format_output(self, p, q, check_standard):
....: SemistandardSuperTableau)
True
"""
from sage.combinat.tableau import SemistandardSuperTableau, StandardTableau, StandardSuperTableau
from sage.combinat.tableau import StandardTableau
from sage.combinat.super_tableau import SemistandardSuperTableau, StandardSuperTableau

if not p:
return [StandardTableau([]), StandardTableau([])]
Expand Down

0 comments on commit 5b622eb

Please sign in to comment.