|
27 | 27 | In particular, minimization is called before checking if a series is
|
28 | 28 | nonzero.
|
29 | 29 |
|
30 |
| -.. WARNING:: |
31 |
| -
|
32 |
| - As this code is experimental, warnings are thrown when a |
33 |
| - recognizable series space is created for the first time in a |
34 |
| - session (see :class:`sage.misc.superseded.experimental`). |
35 |
| -
|
36 |
| - TESTS:: |
37 |
| -
|
38 |
| - sage: Rec = RecognizableSeriesSpace(ZZ, [0, 1]) |
39 |
| - doctest:...: FutureWarning: This class/method/function is |
40 |
| - marked as experimental. It, its functionality or its interface |
41 |
| - might change without a formal deprecation. |
42 |
| - See https://github.com/sagemath/sage/issues/21202 for details. |
43 |
| -
|
44 | 30 |
|
45 | 31 | Various
|
46 | 32 | =======
|
|
79 | 65 | from functools import wraps
|
80 | 66 |
|
81 | 67 | from sage.misc.cachefunc import cached_method
|
82 |
| -from sage.misc.superseded import experimental |
83 | 68 | from sage.structure.element import ModuleElement
|
84 | 69 | from sage.structure.parent import Parent
|
85 | 70 | from sage.structure.unique_representation import UniqueRepresentation
|
@@ -1741,7 +1726,6 @@ def __normalize__(cls,
|
1741 | 1726 |
|
1742 | 1727 | return (coefficient_ring, indices, category, minimize_results)
|
1743 | 1728 |
|
1744 |
| - @experimental(issue_number=21202) |
1745 | 1729 | def __init__(self, coefficient_ring, indices, category, minimize_results):
|
1746 | 1730 | r"""
|
1747 | 1731 | See :class:`RecognizableSeriesSpace` for details.
|
|
0 commit comments