We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2480b61 commit 027875cCopy full SHA for 027875c
src/sage/rings/polynomial/symmetric_reduction.pyx
@@ -256,7 +256,7 @@ cdef class SymmetricReductionStrategy:
256
257
def gens(self):
258
"""
259
- Return the list of Infinite Polynomials modulo which ``self`` reduces.
+ Return the tuple of Infinite Polynomials modulo which ``self`` reduces.
260
261
EXAMPLES::
262
@@ -269,9 +269,9 @@ cdef class SymmetricReductionStrategy:
269
y_2*y_1^2,
270
y_2^2*y_1
271
sage: S.gens()
272
- [y_2*y_1^2, y_2^2*y_1]
+ (y_2*y_1^2, y_2^2*y_1)
273
274
- return self._lm
+ return tuple(self._lm)
275
276
def setgens(self, L):
277
0 commit comments