Opened 8 years ago
Last modified 7 years ago
#14345 new defect
newton_sloprs for polynomial over ZpCA requires a prime, and newton_polygon doesn't exist
Reported by: | robharron | Owned by: | roed |
---|---|---|---|
Priority: | minor | Milestone: | sage-6.4 |
Component: | padics | Keywords: | newton slopes, ZpCA |
Cc: | Merged in: | ||
Authors: | Reviewers: | ||
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description
Here's the bug:
R = PolynomialRing(ZpCA(5), 'x') sage: x = R.gen() sage: f = x^2 + 1 sage: f.newton_slopes() --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-79-687b034aeac7> in <module>() ----> 1 f.newton_slopes() TypeError: newton_slopes() takes exactly one argument (0 given) sage: f.newton_polygon() --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-87-e7bcefa164b7> in <module>() ----> 1 f.newton_polygon() /Users/rharron/Programming/sage/local/lib/python2.7/site-packages/sage/structure/element.so in sage.structure.element.Element.__getattr__ (sage/structure/element.c:3527)() /Users/rharron/Programming/sage/local/lib/python2.7/site-packages/sage/structure/misc.so in sage.structure.misc.getattr_from_other_class (sage/structure/misc.c:1488)() AttributeError: 'Polynomial_padic_flat' object has no attribute 'newton_polygon'
ZpCR and Qp work fine. The problem appears to be that polynomials over ZpCA don't know they're over a p-adic ring.
Change History (4)
comment:1 Changed 8 years ago by
- Milestone changed from sage-5.11 to sage-5.12
comment:2 Changed 7 years ago by
- Milestone changed from sage-6.1 to sage-6.2
comment:3 Changed 7 years ago by
- Milestone changed from sage-6.2 to sage-6.3
comment:4 Changed 7 years ago by
- Milestone changed from sage-6.3 to sage-6.4
Note: See
TracTickets for help on using
tickets.