Closed roed314 closed 6 years ago
Branch pushed to git repo; I updated commit sha1. New commits:
899d9f6 | Extra doctests in morphism.pyx |
Branch pushed to git repo; I updated commit sha1. New commits:
8d06440 | Fix sphinx problem |
All tests pass on our machines. Sending it to the patchbots.
Author: David Roe, Julian Rüth, Xavier Caruso
Reviewer: Julian Rüth, Xavier Caruso, David Roe
There's still a bug with shifting:
sage: W.<a> = Zq(2^10,3)
sage: S.<x> = W[]
sage: OL.<pi> = W.extension(x^2 - 2*a*x + 2)
sage: OL(1) >> 1
a + pi + pi^3 + a*pi^4 + O(pi^5)
The last answer should be 0
, I guess.
In any case, results are not coherent:
sage: (OL(1) >> 1) >> 1
(a^2 + 1) + a*pi + pi^2 + O(pi^4)
sage: OL(1) >> 2
O(pi^4)
Branch pushed to git repo; I updated commit sha1. New commits:
5ffb263 | replace creduce by normalize |
Branch pushed to git repo; I updated commit sha1. New commits:
7e842e3 | Avoid to call two times cremove |
Changed dependencies from #23221, #23228, #23471, #25908 to #23221, #23228, #23471, #25908, #21994
Branch pushed to git repo; I updated commit sha1. New commits:
b979df8 | Remove a sig_on/sig_off |
I've found--and fixed--some bugs.
I'm not satisfied with this ticket. Positive review for me when patchbot is happy.
Last 10 new commits:
9340a8a | Fix a corner case |
4d6623d | Merge branch 't/21994/quo_rem_revision' into t/23218/ramified_extensions_of_general_p_adic_rings_and_fields |
2975633 | Add _quo_rem to lattice precision |
cabb63e | Merge branch 'u/caruso/quo_rem_revision' of git://trac.sagemath.org/sage into t/21994/quo_rem_revision |
4fed21f | Merge branch 't/21994/quo_rem_revision' into t/23218/ramified_extensions_of_general_p_adic_rings_and_fields |
aacb4c2 | Merge branch 'u/roed/ramified_extensions_of_general_p_adic_rings_and_fields' of trac.sagemath.org:sage into t/23218/ramified_extensions_of_general_p_adic_rings_and_fields |
0ea13c0 | Fix two bugs: one in expansion, one in cshift |
22840e5 | Prevent _test_log to compute log(0) |
87f4c43 | Always creduce after cremove |
b1a3236 | Remove unwanted print statements |
Branch pushed to git repo; I updated commit sha1. New commits:
ecf1155 | Fix _get_unit in CA_template.pxi |
Branch pushed to git repo; I updated commit sha1. New commits:
b2d0d73 | Fixing doctests |
Branch pushed to git repo; I updated commit sha1. New commits:
ab5aab4 | Fixing doctests and typos |
Branch pushed to git repo; I updated commit sha1. New commits:
8576c59 | Change construction functors for p-adics, making pushouts work in towers |
Branch pushed to git repo; I updated commit sha1. New commits:
fda2c7d | Adding documentation and fixing minor issues |
Branch pushed to git repo; I updated commit sha1. New commits:
46744d6 | Make _quo_rem more easily accessible to the user |
c0da7de | Update documentation |
c8ae6a7 | Move the generic implementation of _quo_rem back from 23218 |
9662550 | Merge branch 'u/roed/quo_rem_revision' of git://trac.sagemath.org/sage into t/21994/quo_rem_revision |
162b44d | Fixing doctests, bad argument in floordiv |
dc2df56 | Merge branch 't/21994/quo_rem_revision' into t/23218/ramified_extensions_of_general_p_adic_rings_and_fields |
We should have support for relative extensions of p-adic rings and fields. This is particularly useful for totally ramified extensions of unramified extensions of Qp, which will represent a general absolute extension of Qp.
Depends on #23221 Depends on #23228 Depends on #23471 Depends on #25908 Depends on #21994
CC: @saraedum @sagetrac-swewers @xcaruso
Component: padics
Keywords: sd87, padicIMA
Author: David Roe, Julian Rüth, Xavier Caruso
Branch/Commit:
319f6d4
Reviewer: Julian Rüth, Xavier Caruso, David Roe
Issue created by migration from https://trac.sagemath.org/ticket/23218