#31108 closed enhancement (fixed)
Relaxed p-adics
Reported by: | caruso | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | sage-9.4 |
Component: | padics | Keywords: | |
Cc: | TristanVaccon, gh-ThibautVerron, roed, saraedum | Merged in: | |
Authors: | Xavier Caruso | Reviewers: | David Roe |
Report Upstream: | N/A | Work issues: | |
Branch: | ad06299 (Commits, GitHub, GitLab) | Commit: | |
Dependencies: | Stopgaps: |
Description (last modified by )
We propose an implementation of exact p-adic numbers relaying on relaxed arithmetics proposed by van der Hoeven and al.
Here is a small demo:
The model for relaxed `p`-adics is quite different from any of the other types of `p`-adics. In addition to storing a finite approximation, one also stores a method for increasing the precision. Relaxed `p`-adic rings are created by the constructor :func:`ZpER`:: sage: R = ZpER(5, print_mode="digits") sage: R 5-adic Ring handled with relaxed arithmetics The precision is not capped in `R`:: sage: R.precision_cap() +Infinity However, a default precision is fixed. This is the precision at which the elements will be printed:: sage: R.default_prec() 20 A default halting precision is also set. It is the default absolute precision at which the elements will be compared. By default, it is twice the default precision:: sage: R.halting_prec() 40 However, both the default precision and the halting precision can be customized at the creation of the parent as follows: sage: S = ZpER(5, prec=10, halt=100) sage: S.default_prec() 10 sage: S.halting_prec() 100 One creates elements as usual:: sage: a = R(17/42) sage: a ...00244200244200244201 sage: R.random_element() # random ...21013213133412431402 Here we notice that 20 digits (that is the default precision) are printed. However, the computation model is designed in order to guarantee that more digits of `a` will be available on demand. This feature is reflected by the fact that, when we ask for the precision of `a`, the software answers `+\infty`:: sage: a.precision_absolute() +Infinity Asking for more digits is achieved by the methods :meth:`at_precision_absolute` and :meth:`at_precision_relative`:: sage: a.at_precision_absolute(30) ...?244200244200244200244200244201 As a shortcut, one can use the bracket operator:: sage: a[:30] ...?244200244200244200244200244201 Of course, standard operations are supported:: sage: b = R(42/17) sage: a + b ...03232011214322140002 sage: a - b ...42311334324023403400 sage: a * b ...00000000000000000001 sage: a / b ...12442142113021233401 sage: sqrt(a) ...20042333114021142101 We observe again that only 20 digits are printed but, as before, more digits are available on demand:: sage: sqrt(a)[:30] ...?142443342120042333114021142101 .. RUBRIC:: Equality tests Checking equalities between relaxed `p`-adics is a bit subtle and can sometimes be puzzling at first glance. When the parent is created with ``secure=False`` (which is the default), elements are compared at the current precision, or at the default halting precision if it is higher:: sage: a == b False sage: a == sqrt(a)^2 True sage: a == sqrt(a)^2 + 5^50 True In the above example, the halting precision is `40`; it is the reason why a congruence modulo `5^50` is considered as an equality. However, if both sides of the equalities have been previously computed with more digits, those digits are taken into account. Hence comparing two elements at different times can produce different results:: sage: aa = sqrt(a)^2 + 5^50 sage: a == aa True sage: a[:60] ...?244200244200244200244200244200244200244200244200244200244201 sage: aa[:60] ...?244200244300244200244200244200244200244200244200244200244201 sage: a == aa False This annoying situation, where the output of `a == aa` may change depending on previous computations, cannot occur when the parent is created with ``secure=True``. Indeed, in this case, if the equality cannot be decided, an error is raised:: sage: S = ZpER(5, secure=True) sage: u = S.random_element() sage: uu = u + 5^50 sage: u == uu Traceback (most recent call last): ... PrecisionError: unable to decide equality; try to bound precision sage: u[:60] == uu False .. RUBRIC:: Self-referent numbers A quite interesting feature with relaxed `p`-adics is the possibility to create (in some cases) self-referent numbers. Here is an example. We first declare a new variable as follows:: sage: x = R.unknown() sage: x ...?.0 We then use the method :meth:`set` to define `x` by writing down an equation it satisfies:: sage: x.set(1 + 5*x^2) True The variable `x` now contains the unique solution of the equation `x = 1 + 5 x^2`:: sage: x ...04222412141121000211 This works because the `n`-th digit of the right hand size of the defining equation only involves the `i`-th digits of `x` with `i < n` (this is due to the factor `5`). As a comparison, the following does not work:: sage: y = R.unknown() sage: y.set(1 + 3*y^2) True sage: y ...?.0 sage: y[:20] Traceback (most recent call last): ... RecursionError: definition looks circular Self-referent definitions also work with systems of equations:: sage: u = R.unknown() sage: v = R.unknown() sage: w = R.unknown() sage: u.set(1 + 2*v + 3*w^2 + 5*u*v*w) True sage: v.set(2 + 4*w + sqrt(1 + 5*u + 10*v + 15*w)) True sage: w.set(3 + 25*(u*v + v*w + u*w)) True sage: u ...31203130103131131433 sage: v ...33441043031103114240 sage: w ...30212422041102444403
Change History (60)
comment:1 Changed 20 months ago by
- Branch set to u/caruso/relaxed
comment:2 Changed 20 months ago by
- Commit set to 7229cefe8a60f1482f91d2670863843513791b43
- Description modified (diff)
comment:3 Changed 20 months ago by
- Commit changed from 7229cefe8a60f1482f91d2670863843513791b43 to 1fb0d59cbce16d1d7d6a423474301a6c060f9b43
Branch pushed to git repo; I updated commit sha1. New commits:
1fb0d59 | rough implementation of square roots
|
comment:4 Changed 20 months ago by
- Commit changed from 1fb0d59cbce16d1d7d6a423474301a6c060f9b43 to b69ba5acbc71204fe113a4df7ffb4fc2fca0a27b
Branch pushed to git repo; I updated commit sha1. New commits:
b69ba5a | method selfref
|
comment:6 Changed 20 months ago by
- Commit changed from b69ba5acbc71204fe113a4df7ffb4fc2fca0a27b to 4044cadcc2792847530c6163ab0977c32c56ee45
Branch pushed to git repo; I updated commit sha1. New commits:
4044cad | rewrite in cython+flint (not finished)
|
comment:7 Changed 20 months ago by
- Commit changed from 4044cadcc2792847530c6163ab0977c32c56ee45 to f3397321658398e03765b57ea852d53fa8e684ab
comment:8 Changed 20 months ago by
- Commit changed from f3397321658398e03765b57ea852d53fa8e684ab to a35d5d40556bb6136ac7b24aad7defea1a7346f6
comment:9 Changed 20 months ago by
- Commit changed from a35d5d40556bb6136ac7b24aad7defea1a7346f6 to 707287b49e4e6d45a9ac9ca20c7bb2d1fdcd7a33
Branch pushed to git repo; I updated commit sha1. New commits:
707287b | c helper file
|
comment:10 Changed 20 months ago by
- Commit changed from 707287b49e4e6d45a9ac9ca20c7bb2d1fdcd7a33 to b130f140ec7b0835f5ccd5d604c30084792fa15c
Branch pushed to git repo; I updated commit sha1. New commits:
b130f14 | fix bugs in element_constructor
|
comment:11 Changed 20 months ago by
- Commit changed from b130f140ec7b0835f5ccd5d604c30084792fa15c to ac5dbbc7dc56073ba9830eb2937064f2e91e02eb
comment:12 Changed 20 months ago by
- Commit changed from ac5dbbc7dc56073ba9830eb2937064f2e91e02eb to 4f2f8e6c2754355abcdc318c2d38b938d7b47599
Branch pushed to git repo; I updated commit sha1. New commits:
4f2f8e6 | explicit error codes
|
comment:13 Changed 20 months ago by
- Commit changed from 4f2f8e6c2754355abcdc318c2d38b938d7b47599 to e23dccf09ef602230d5e70ae45cbb73470853578
Branch pushed to git repo; I updated commit sha1. New commits:
e23dccf | better with files added
|
comment:14 Changed 20 months ago by
- Commit changed from e23dccf09ef602230d5e70ae45cbb73470853578 to 596280e920bc8f5a0252327bfa689e540dadaefe
comment:15 Changed 20 months ago by
- Description modified (diff)
comment:16 Changed 20 months ago by
- Commit changed from 596280e920bc8f5a0252327bfa689e540dadaefe to 202e160b7973b9068018ebd49c5ea488da87d3b8
Branch pushed to git repo; I updated commit sha1. New commits:
202e160 | square roots when p=2
|
comment:17 Changed 19 months ago by
- Commit changed from 202e160b7973b9068018ebd49c5ea488da87d3b8 to 7e6e696d01878296a910c462fb928e171939348d
comment:18 Changed 19 months ago by
- Commit changed from 7e6e696d01878296a910c462fb928e171939348d to 17996461d34bdce6d77d1d4b57a7214f67180285
Branch pushed to git repo; I updated commit sha1. New commits:
1799646 | write templates
|
comment:19 Changed 19 months ago by
- Commit changed from 17996461d34bdce6d77d1d4b57a7214f67180285 to b2b377aabdd18dbc87d324fc736ac7abeeec3be6
comment:20 Changed 19 months ago by
- Commit changed from b2b377aabdd18dbc87d324fc736ac7abeeec3be6 to 2f518421913b570a37754391cfe3f91ef24e1fe5
Branch pushed to git repo; I updated commit sha1. New commits:
56001b4 | slices
|
4818fef | init jump
|
30d36da | bounded and unbounded elements
|
b692710 | replace jump_* by at_precision_*
|
6ea0a8c | change behaviour of _repr_, precision_absolute and precision_absolute
|
bca6f7b | do not jump at initialization for unbounded elements
|
2f51842 | fix some bugs
|
comment:21 Changed 19 months ago by
- Commit changed from 2f518421913b570a37754391cfe3f91ef24e1fe5 to f395104a6ec660d8c9fad4dbe8613290a54642cf
comment:22 Changed 19 months ago by
- Description modified (diff)
comment:23 Changed 19 months ago by
A note about operator choice: While the @
notation is definite informative and cute when considered stand-alone, it doesn't fit very well with other places where the operator is used in python. Specifically, the operator was introduced upon request of the numpy people, to signify matrix multiplication. With that in mind @
has a rather strong association with (function) composition (which, in a specific way, is also how you could read @
decorators to function definitions).
There's a reasonable chance that @
will at some point be integrated in the coercion framework. The use for @
proposed here will cause problems. I'd suggest just using a named method to cap precision.
Otherwise, this package looks really cool! It would be great to see some performance specs at some point.
comment:24 Changed 19 months ago by
I'm a bit disappointed but I note your argument for @
and will probably disallow this construction.
About performances, it's of course not as fast as other types of p-adics but I would say that it's already reasonable (although optimizations are still possible):
sage: R = ZpL(5) sage: a = R.random_element() sage: b = R.random_element() sage: c = 1 + 5*R.random_element() sage: %timeit _ = (a + b)@10000 848 µs ± 614 ns per loop (mean ± std. dev. of 7 runs, 1000 loops each) sage: %timeit _ = (a * b)@10000 9.59 ms ± 116 µs per loop (mean ± std. dev. of 7 runs, 100 loops each) sage: %timeit _ = (a / b)@10000 11.7 ms ± 215 µs per loop (mean ± std. dev. of 7 runs, 100 loops each) sage: %timeit _ = c.sqrt()@10000 13.7 ms ± 240 µs per loop (mean ± std. dev. of 7 runs, 100 loops each)
Compare with:
sage: R = Zp(5, prec=10000) sage: a = R.random_element() sage: b = R.random_element() sage: c = 1 + 5*R.random_element() sage: %timeit _ = a + b 1.21 µs ± 9.2 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) sage: %timeit _ = a * b 87.8 µs ± 130 ns per loop (mean ± std. dev. of 7 runs, 10000 loops each) sage: %timeit _ = a / b 667 µs ± 4.08 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each) sage: %timeit _ = c.sqrt() 27.4 ms ± 125 µs per loop (mean ± std. dev. of 7 runs, 10 loops each)
EDIT: use %timeit
instead of %time
comment:25 Changed 19 months ago by
Maybe some comments on the timings. The "bad" performances of lazy p-adic come from two different sources:
- the underlying arithmetics looses a factor log(precision) in the complexity
- I'm working on digits, which means that I basically only manipulate integers between 0 and p (here p=5) and encode them on longs.
Although I cannot do much to get rid of the first problem, I can certainly do something for the second one: instead of working with digits, I can work with blocks of digits (limbs) of the correct size. Actually, I want to do this but this requires many changes in my current code and I planned to delay this for another ticket.
In any case, when p becomes larger, the differences of performances between lazy p-adics and classical p-adics tend to get smaller.
sage: p = next_prime(2^63) sage: R = ZpL(p) sage: a = R.random_element() sage: b = R.random_element() sage: c = 1 + p*R.random_element() sage: %timeit _ = (a + b)@10000 3.51 ms ± 407 µs per loop (mean ± std. dev. of 7 runs, 100 loops each) sage: %timeit _ = (a * b)@10000 73.7 ms ± 189 µs per loop (mean ± std. dev. of 7 runs, 10 loops each) sage: %timeit _ = (a / b)@10000 83.4 ms ± 471 µs per loop (mean ± std. dev. of 7 runs, 10 loops each) sage: %timeit _ = c.sqrt()@10000 160 ms ± 3.31 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)
and:
sage: p = next_prime(2^63) sage: R = Zp(p, prec=10000) sage: a = R.random_element() sage: b = R.random_element() sage: c = 1 + p*R.random_element() sage: %timeit _ = a + b 86.4 µs ± 578 ns per loop (mean ± std. dev. of 7 runs, 10000 loops each) sage: %timeit _ = a * b 9.04 ms ± 63.9 µs per loop (mean ± std. dev. of 7 runs, 100 loops each) sage: %timeit _ = a / b 78.8 ms ± 415 µs per loop (mean ± std. dev. of 7 runs, 10 loops each) sage: %timeit _ = c.sqrt() 672 ms ± 1.23 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
comment:26 Changed 19 months ago by
- Commit changed from f395104a6ec660d8c9fad4dbe8613290a54642cf to 7fc3fb35f8c363c1200e5761fa7d0a9acd26d743
Branch pushed to git repo; I updated commit sha1. New commits:
72f2f70 | documentation in linkage files
|
a632ec9 | move tutorial to the documentation of ZpL
|
3199f73 | printer is always defined
|
5aa0af9 | try to accelerate addition and subtraction
|
baeeb10 | documentation in generic_nodes
|
5316bee | fix doctest
|
7fc3fb3 | make TestSuite pass (except pickling)
|
comment:27 Changed 19 months ago by
- Commit changed from 7fc3fb35f8c363c1200e5761fa7d0a9acd26d743 to bac0fd109708dc1305db0a4f5f080b2d1fa2f519
comment:28 Changed 19 months ago by
- Commit changed from bac0fd109708dc1305db0a4f5f080b2d1fa2f519 to ab8111d78c0d31e72b6a668fc5b664f6707d41a3
comment:29 Changed 18 months ago by
- Commit changed from ab8111d78c0d31e72b6a668fc5b664f6707d41a3 to 30089ba5a067f09a8d7f4deabbf26f611e8d8b1e
comment:30 Changed 18 months ago by
- Commit changed from 30089ba5a067f09a8d7f4deabbf26f611e8d8b1e to e0acbd9770d38d400fa9debc739f1935cdc54aba
comment:31 Changed 18 months ago by
- Commit changed from e0acbd9770d38d400fa9debc739f1935cdc54aba to 0cf1d59137af3e6a346153e148120e934669d347
Branch pushed to git repo; I updated commit sha1. New commits:
0cf1d59 | implement expansion in Teichmuller mode
|
comment:32 Changed 18 months ago by
- Status changed from new to needs_review
I guess that the ticket is ready for a first review...
comment:33 Changed 18 months ago by
- Description modified (diff)
comment:34 Changed 18 months ago by
- Commit changed from 0cf1d59137af3e6a346153e148120e934669d347 to 9398e979dc4c22deed2140d039bba807616accb2
Branch pushed to git repo; I updated commit sha1. New commits:
9398e97 | fix pyflakes
|
comment:35 Changed 18 months ago by
- Reviewers set to David Roe
- Status changed from needs_review to needs_work
Some issues that we talked about on video:
- Add some halting parameters to the parent
- Inconsistency with valuation and set method. Add a check parameter to
set
to ensure that the element satisfies the given equation (even with provided valuation and/or digits) or haveset
returnTrue
orFalse
depending on whether the equation is satisfied. - Figure out segfaults in gcd computations, conversions
- Change
selfref
tounknown
For another ticket: add more transcendental functions like exp
and log
comment:36 follow-up: ↓ 41 Changed 18 months ago by
More comments as I read through the code.
- In
digit_smallest
you callfmpz_init
but notfmpz_clear
. I think this is a memory leak. I may have missed other leaks.... I also think that the documentation ofdigit_smallest
should clarify that the input should already be in the range0..p-1
. - For
digit_sqrt
it may be worth using FLINT'sn_sqrtmod
ifp
is word-size. You could also do some other easy cases in-line rather than calling out to Sage's integer_mod code. Seesquare_root_mod_prime
insage/rings/finite_rings/integer_mod.pyx
. - You should add documentation to
sage/misc/persist.pyx
on howalready_pickled
andalready_unpickled
are intended to work, and some tests to check that it's working correctly. - When converting an element between a lazy p-adic ring and its field of fractions it looks in
_element_constructor_
that you create a bounded element. Why is this necessary? It also looks like you don't check that the primes are the same.... - The error codes in
padic_lazy_error.pyx
andnext_c()
aren't the same. - In
_repr_
it looks like some print modes aren't included (e.g.terse
andval-unit
). I would guess it to be easier to use code frompadic_printing.pyx
here. - Last week we talked about adding some parameters about how halting is handled (e.g. a strict mode that raises an error whenever unbounded elements are compared).
__nonzero__
should also be updated. I think the precision behavior for__nonzero__
should be the same as for== 0
; currently it will returnTrue
rather than raising a precision error if it looks like0
at known precision. - I found the use of
permissive=None
a bit strange inat_precision_absolute
. I think if a user specifies infinite precision,permissive
should be treated asFalse
(so, replaceif permissive is False
withif not permissive
. - Shouldn't
at_precision_relative
also supportprec=infinity
? - You can probably remove some code by changing
if error: raise_error(error)
to justraise_error(error)
since this has no effect if error is 0. _sub_
has a bug: currently0-1
will give1
.
More comments to come....
comment:37 follow-up: ↓ 39 Changed 18 months ago by
- In
next_c()
for random elements, do you need todigit_clear(r)
in both branches of the if statement? - It would be good to have some tests for slices of slices.
- In
next_c()
forLazyElement_div
, ifdefinition is None
and you set it, don't you still want to execute theelse
clause? If not, you can justreturn self._bootstrap_c()
rather thanif error: return error
. Same forLazyElement_sqrt
. - In the
__init__
method forLazyElement_sqrt
, shouldn't you check that the valuation is even? - You should probably delete the
next
method onLazyElement_sqrt
(I assume it was for debugging; it's not documented).
comment:38 Changed 18 months ago by
- Branch changed from u/caruso/relaxed to u/roed/relaxed
comment:39 in reply to: ↑ 37 Changed 18 months ago by
- Commit changed from 9398e979dc4c22deed2140d039bba807616accb2 to 54c46e2aa52716fd74a40cfbbefece56bae23372
- In
digit_smallest
you callfmpz_init
but notfmpz_clear
. I think this is a memory leak. I may have missed other leaks.... I also think that the documentation ofdigit_smallest
should clarify that the input should already be in the range0..p-1
.- You should add documentation to
sage/misc/persist.pyx
on howalready_pickled
andalready_unpickled
are intended to work, and some tests to check that it's working correctly.- The error codes in
padic_lazy_error.pyx
andnext_c()
aren't the same.- I found the use of
permissive=None
a bit strange inat_precision_absolute
. I think if a user specifies infinite precision,permissive
should be treated asFalse
(so, replaceif permissive is False
withif not permissive
.- Shouldn't
at_precision_relative
also supportprec=infinity
?- You can probably remove some code by changing
if error: raise_error(error)
to justraise_error(error)
since this has no effect if error is 0._sub_
has a bug: currently0-1
will give1
.- In
next_c()
for random elements, do you need todigit_clear(r)
in both branches of the if statement?- It would be good to have some tests for slices of slices.
- You should probably delete the
next
method onLazyElement_sqrt
(I assume it was for debugging; it's not documented).
Fixed.
- In
_repr_
it looks like some print modes aren't included (e.g.terse
andval-unit
). I would guess it to be easier to use code frompadic_printing.pyx
here.
They are included.
I agree that we should include this code in padic_printing.pyx
but it does not sounds easy.
- When converting an element between a lazy p-adic ring and its field of fractions it looks in
_element_constructor_
that you create a bounded element. Why is this necessary? It also looks like you don't check that the primes are the same....
It's true than I call LazyElement_bound
but I pass in boundprec=maxordp
so that the resulting element remains unbounded. It's a convenient way to do copies. (I cannot return the same element because the parent changes.)
- In
next_c()
forLazyElement_div
, ifdefinition is None
and you set it, don't you still want to execute theelse
clause? If not, you can justreturn self._bootstrap_c()
rather thanif error: return error
. Same forLazyElement_sqrt
.
Well, _bootstrap_c
already computes the first significant digit, so I think it's fine like this. I changed if error: return error
to return self._bootstrap_c()
.
- In the
__init__
method forLazyElement_sqrt
, shouldn't you check that the valuation is even?
It's checked in the bootstrap function.
I think we cannot check it in the __init__
method because the valuation might be not known for self-referent numbers.
New commits:
54c46e2 | Fixing typos, grammar and whitespace
|
comment:40 Changed 18 months ago by
- Branch changed from u/roed/relaxed to u/caruso/relaxed
comment:41 in reply to: ↑ 36 Changed 18 months ago by
And here the comments I have not addressed yet:
- Last week we talked about adding some parameters about how halting is handled (e.g. a strict mode that raises an error whenever unbounded elements are compared).
__nonzero__
should also be updated. I think the precision behavior for__nonzero__
should be the same as for== 0
; currently it will returnTrue
rather than raising a precision error if it looks like0
at known precision.- Inconsistency with valuation and set method. Add a check parameter to
set
to ensure that the element satisfies the given equation (even with provided valuation and/or digits) or haveset
returnTrue
orFalse
depending on whether the equation is satisfied.- Figure out segfaults in gcd computations, conversions
- Change
selfref
tounknown
- For
digit_sqrt
it may be worth using FLINT'sn_sqrtmod
ifp
is word-size. You could also do some other easy cases in-line rather than calling out to Sage's integer_mod code. Seesquare_root_mod_prime
insage/rings/finite_rings/integer_mod.pyx
.
comment:42 Changed 18 months ago by
- Commit changed from 54c46e2aa52716fd74a40cfbbefece56bae23372 to 5a5bdd963d0e9151d7bf463282c636a014d24103
Branch pushed to git repo; I updated commit sha1. New commits:
5a5bdd9 | Address David's remarks
|
comment:43 Changed 17 months ago by
- Milestone changed from sage-9.3 to sage-9.4
Sage development has entered the release candidate phase for 9.3. Setting a new milestone for this ticket based on a cursory review of ticket status, priority, and last modification date.
comment:44 Changed 17 months ago by
- Commit changed from 5a5bdd963d0e9151d7bf463282c636a014d24103 to b520df3d37344fe3dfef0b53198cefbf195910f3
comment:45 Changed 17 months ago by
- Commit changed from b520df3d37344fe3dfef0b53198cefbf195910f3 to a4a72a532adac9d23a57af9c7115023abde73306
comment:46 Changed 17 months ago by
- Commit changed from a4a72a532adac9d23a57af9c7115023abde73306 to b21c36d21cac890236e1f6865a32ccf18b184168
Branch pushed to git repo; I updated commit sha1. New commits:
b21c36d | use fmpz_sqrtmod
|
comment:47 Changed 17 months ago by
- Status changed from needs_work to needs_review
I think that all your comments have been addressed now.
We still need to discuss the choice of the name for the classes implemented in this ticket (cf discussion on zulip).
comment:48 Changed 17 months ago by
- Commit changed from b21c36d21cac890236e1f6865a32ccf18b184168 to 7f49e18bbeb2113d4ce5a304af11c3e19f9515fb
Branch pushed to git repo; I updated commit sha1. New commits:
7f49e18 | add keyword secure in the parent
|
comment:49 Changed 17 months ago by
- Description modified (diff)
comment:50 Changed 16 months ago by
- Commit changed from 7f49e18bbeb2113d4ce5a304af11c3e19f9515fb to 24ef236af58e1c7171b079c9a47d1f67b891e00b
Branch pushed to git repo; I updated commit sha1. New commits:
24ef236 | lazy -> relaxed
|
comment:51 Changed 16 months ago by
- Description modified (diff)
- Summary changed from lazy p-adics to Relaxed p-adics
I changed the naming (Relaxed
instead of Lazy
, ZpER
instead of ZpL
).
Ticket ready for a second review.
comment:52 Changed 16 months ago by
- Commit changed from 24ef236af58e1c7171b079c9a47d1f67b891e00b to df13f1ebea093a6ffb4d86e56a62e08a0fd24cc3
comment:53 Changed 16 months ago by
- Commit changed from df13f1ebea093a6ffb4d86e56a62e08a0fd24cc3 to 50c9719335ca47ba46d4cc4214f7a79f9ae51add
Branch pushed to git repo; I updated commit sha1. New commits:
50c9719 | simplify exposition of relaxed hierarchy
|
comment:54 Changed 16 months ago by
- Status changed from needs_review to positive_review
Looks good to me! I think any additional issues can be addressed in followup tickets.
comment:55 Changed 16 months ago by
- Commit changed from 50c9719335ca47ba46d4cc4214f7a79f9ae51add to e30393b481a97b0428b9926d01769e9b2e242eb7
- Status changed from positive_review to needs_review
Branch pushed to git repo; I updated commit sha1 and set ticket back to needs_review. New commits:
e30393b | minor typos
|
comment:56 Changed 16 months ago by
- Status changed from needs_review to positive_review
Great, thanks! I set again the ticket to positive review, I've just fixed two typos.
comment:57 Changed 16 months ago by
- Commit changed from e30393b481a97b0428b9926d01769e9b2e242eb7 to ad06299820b3302a3f39cff8b281dcb95819fba0
- Status changed from positive_review to needs_review
Branch pushed to git repo; I updated commit sha1 and set ticket back to needs_review. New commits:
ad06299 | typo
|
comment:58 Changed 16 months ago by
- Status changed from needs_review to positive_review
comment:59 Changed 15 months ago by
- Branch changed from u/caruso/relaxed to ad06299820b3302a3f39cff8b281dcb95819fba0
- Resolution set to fixed
- Status changed from positive_review to closed
comment:60 Changed 15 months ago by
- Commit ad06299820b3302a3f39cff8b281dcb95819fba0 deleted
Looks like this broke the build --> #31903
New commits:
first implementation of lazy p-adics