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

enable TestSuite for AsymptoticRing #19424

Open
dkrenn opened this issue Oct 16, 2015 · 1 comment
Open

enable TestSuite for AsymptoticRing #19424

dkrenn opened this issue Oct 16, 2015 · 1 comment

Comments

@dkrenn
Copy link
Contributor

dkrenn commented Oct 16, 2015

In sage.ring.asymptotic_ring.AsymptoticRing there is

        sage: from sage.rings.asymptotic.asymptotic_ring import AsymptoticRing as AR_class
        sage: class AR(AR_class):
        ....:     class Element(AR_class.Element):
        ....:         __eq__ = AR_class.Element.has_same_summands
        sage: A = AR(growth_group='z^QQ', coefficient_ring=QQ)
        sage: from itertools import islice
        sage: TestSuite(A).run(  # not tested  # long time
        ....:     verbose=True,
        ....:     elements=tuple(islice(A.some_elements(), 10)),
        ....:     skip=('_test_some_elements',  # to many elements
        ....:           '_test_distributivity'))  # due to cancellations: O(z) != O(z^2)

which is marked as not tested. This is due to some failures with pickling. Correct this and enable this test.

Depends on #19083

CC: @cheuberg @behackl

Component: asymptotic expansions

Issue created by migration from https://trac.sagemath.org/ticket/19424

@cheuberg

This comment has been minimized.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants