-
-
Notifications
You must be signed in to change notification settings - Fork 505
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
Bad determination of the coordinate range when restricting charts to subdomains #32929
Comments
comment:2
Here is a proposed fix. The bug was triggered in In correcting the bug, I had to change the attribute The doctest change in line 669 of New commits:
|
This comment has been minimized.
This comment has been minimized.
Commit: |
Changed keywords from none to chart |
Author: Eric Gourgoulhon |
comment:5
Just a trivial change for doc formatting: - a tuple of variables (as elements of ``SR``)
- a dictionary with possible keys:
- - `"periods"`: a tuple of periods
- - `"bounds"`: a tuple of coordinate ranges
+
+ * ``"periods"``: a tuple of periods
+ * ``"bounds"``: a tuple of coordinate ranges Once changed, you can set a positive review. |
Reviewer: Travis Scrimshaw |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:7
Replying to @tscrim: Thank you for the review!
Corrected in the above commit. |
comment:8
The other thing that is needed (I believe) in the blank line between the indented bullets. |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:10
Replying to @tscrim:
Thanks for catching this. This is corrected in the last commit. |
comment:11
in view of comment:5. Thank you Travis! |
Changed branch from public/manifolds/bug_chart_restrict-32929 to |
Since Sage 9.4, we have
The lower bound for
x
should beO
, not-oo
, andy
should appear as a periodic coordinate, i.e. one should getSage <= 9.3 was free of this bug. In Sage >= 9.4, one can trace it to the optional argument
bounds
ofRealChart.__init__
, which is used inRealChart.restrict
(cf. the lineres = type(self)(..., bounds=self._bounds, ...)
)and which is not correctly transmitted by
Chart.__classcall__
.CC: @mkoeppe @tscrim @mjungmath
Component: manifolds
Keywords: chart
Author: Eric Gourgoulhon
Branch/Commit:
b5f7af5
Reviewer: Travis Scrimshaw
Issue created by migration from https://trac.sagemath.org/ticket/32929
The text was updated successfully, but these errors were encountered: