Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

provide a construction functor using a single functor for families #37687

Merged
merged 4 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sage/combinat/sf/dual.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def basis_name(self):
Return the name of the basis of ``self``.

This is used for output and, for the classical bases of
symmetric functions, to connect this basis with Symmetrica.
symmetric functions, to connect this basis with :ref:`Symmetrica <spkg_symmetrica>`.

EXAMPLES::

Expand Down
3 changes: 2 additions & 1 deletion src/sage/combinat/sf/sfa.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,8 @@ def corresponding_basis_over(self, R):
sage: Sym = SymmetricFunctions(P)
sage: mj = Sym.macdonald().J()
sage: mj.corresponding_basis_over(Integers(13)['q','t'])
Symmetric Functions over Multivariate Polynomial Ring in q, t over Ring of integers modulo 13 in the Macdonald J basis
Symmetric Functions over Multivariate Polynomial Ring in q, t over
Ring of integers modulo 13 in the Macdonald J basis

TESTS:

Expand Down
1 change: 0 additions & 1 deletion src/sage/combinat/sf/witt.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from sage.arith.misc import divisors
from sage.combinat.integer_lists.invlex import IntegerListsLex
from sage.combinat.partitions import ZS1_iterator
from sage.matrix.constructor import matrix
from sage.misc.cachefunc import cached_method


Expand Down
Loading