Skip to content

Commit 6e82ee5

Browse files
author
Release Manager
committed
gh-38108: Implicit function solver for lazy series This pull request provides a method `define_implicitly` for lazy rings that allows to produce lazy power series solutions for systems of functional equations, in relatively great generality, superseding #37033. We use a special action to make sure that coercion between `CoefficientRing` and its base ring works as desired. However, it is a local change, if the current approach eventually shows its shortcomings. (Alternative approach previously considered: Using a special functor to control the pushout behaviors. The action approach was chosen as a way to prevent potential conflicts with other construction functors that may appear in the future.) Dependencies: #38729 URL: #38108 Reported by: Martin Rubey Reviewer(s): Martin Rubey, Travis Scrimshaw
2 parents 42d00ed + 5ce77b6 commit 6e82ee5

10 files changed

+1698
-134
lines changed

src/sage/combinat/sf/orthotriang.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def __init__(self, Sym, base, scalar, prefix, basis_name, leading_coeff):
103103
TESTS::
104104
105105
sage: TestSuite(s).run(elements=[s[1,1]+2*s[2], s[1]+3*s[1,1]])
106-
sage: TestSuite(s).run(skip=["_test_associativity", "_test_prod", '_test_construction']) # long time (7s on sage.math, 2011)
106+
sage: TestSuite(s).run(skip=["_test_associativity", "_test_prod"]) # long time (7s on sage.math, 2011)
107107
108108
Note: ``s.an_element()`` is of degree 4; so we skip
109109
``_test_associativity`` and ``_test_prod`` which involve

src/sage/combinat/sf/sf.py

-1
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,6 @@ class function on the symmetric group where the elements
845845
- Devise a mechanism so that pickling bases of symmetric
846846
functions pickles the coercions which have a cache.
847847
"""
848-
849848
def __init__(self, R):
850849
r"""
851850
Initialization of ``self``.

src/sage/combinat/species/generating_series.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def __init__(self, base_ring):
141141
sage: from sage.combinat.species.generating_series import OrdinaryGeneratingSeriesRing
142142
sage: OrdinaryGeneratingSeriesRing.options.halting_precision(15)
143143
sage: R = OrdinaryGeneratingSeriesRing(QQ)
144-
sage: TestSuite(R).run()
144+
sage: TestSuite(R).run(skip="_test_construction")
145145
146146
sage: OrdinaryGeneratingSeriesRing.options._reset() # reset options
147147
"""
@@ -268,7 +268,7 @@ def __init__(self, base_ring):
268268
sage: from sage.combinat.species.generating_series import ExponentialGeneratingSeriesRing
269269
sage: ExponentialGeneratingSeriesRing.options.halting_precision(15)
270270
sage: R = ExponentialGeneratingSeriesRing(QQ)
271-
sage: TestSuite(R).run()
271+
sage: TestSuite(R).run(skip="_test_construction")
272272
273273
sage: ExponentialGeneratingSeriesRing.options._reset() # reset options
274274
"""

src/sage/combinat/species/species.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def structures(self, labels, structure_class=None):
376376
sage: F.structures([1,2,3]).list()
377377
Traceback (most recent call last):
378378
...
379-
NotImplementedError
379+
ValueError: Stream is not yet defined
380380
"""
381381
return StructuresWrapper(self, labels, structure_class)
382382

@@ -388,7 +388,7 @@ def isotypes(self, labels, structure_class=None):
388388
sage: F.isotypes([1,2,3]).list()
389389
Traceback (most recent call last):
390390
...
391-
NotImplementedError
391+
ValueError: Stream is not yet defined
392392
"""
393393
return IsotypesWrapper(self, labels, structure_class=structure_class)
394394

0 commit comments

Comments
 (0)