-
-
Notifications
You must be signed in to change notification settings - Fork 564
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
Laurent power series fail unique representation #24420
Comments
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Author: Vincent Delecroix |
New commits:
|
Branch: u/vdelecroix/24420 |
Commit: |
This comment has been minimized.
This comment has been minimized.
Branch pushed to git repo; I updated commit sha1. This was a forced push. New commits:
|
Branch pushed to git repo; I updated commit sha1. This was a forced push. New commits:
|
Branch pushed to git repo; I updated commit sha1. This was a forced push. New commits:
|
comment:8
rebased on 8.2.beta2 |
Reviewer: Travis Scrimshaw |
comment:9
Since you are going to do the category imports in the from sage.categories.rings import Rings
from sage.categories.integral_domains import IntegralDomains
from sage.categories.fields import Fields
- from sage.categories.complete_discrete_valuation import (
- CompleteDiscreteValuationRings, CompleteDiscreteValuationFields)
base_ring = power_series.base_ring()
if base_ring in Fields():
+ from sage.categories.complete_discrete_valuation import CompleteDiscreteValuationFields
category = CompleteDiscreteValuationFields()
elif base_ring in IntegralDomains():
category = IntegralDomains()
elif base_ring in Rings().Commutative():
category = Rings().Commutative()
else:
raise ValueError('unrecognized base ring') Also, don't we want to use |
comment:10
Replying to @tscrim:
Why? I am happy to move them at the module scope if it is a better practice. |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:13
done |
comment:14
Thanks. One last little thing: you don't use |
Branch pushed to git repo; I updated commit sha1. This was a forced push. New commits:
|
comment:16
Indeed! |
comment:17
Thanks. |
Changed branch from u/vdelecroix/24420 to |
to be compared with
We also fix
We also remove the classes
LaurentSeriesRing_generic
,LaurentSeriesRing_domain
,LaurentSeriesRing_field
in favor of a uniqueLaurentSeriesRing
.Component: algebra
Author: Vincent Delecroix
Branch/Commit:
bcf577d
Reviewer: Travis Scrimshaw
Issue created by migration from https://trac.sagemath.org/ticket/24420
The text was updated successfully, but these errors were encountered: