-
-
Notifications
You must be signed in to change notification settings - Fork 514
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
get rid of have_ring option in singular interface #33949
Comments
New commits:
|
Branch: u/chapoton/33949 |
Commit: |
comment:2
What is the rationale? (1) Setting Singular ring is not expensive anymore. (2) (3) Both. |
comment:3
I think the second point holds: git grep -h "have_ring\s*=" src/ def _singular_(self, singular=singular_default, have_ring=False, force=False): return self._singular_init_(singular, have_ring=have_ring) def _singular_init_(self, singular=singular_default, have_ring=False, force=False): def _singular_(self, singular=singular_default, have_ring=False): def _singular_(self, singular=singular, have_ring=False): def _singular_init_func(self, singular=singular, have_ring=False): def _singular_func(self, singular=singular, have_ring=False): # return self._singular_init_(singular, have_ring=have_ring) return _singular_init_func(self, singular, have_ring=have_ring) def _singular_init_func(self, singular=singular, have_ring=False): def _singular_(self, singular=singular_default, have_ring=False): def _singular_(self, G=None, have_ring=False): def _singular_init_(self, have_ring=False): |
comment:4
#2331 seems to say that before libSingular, |
comment:5
Hence you can also delete the comment |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:7
I removed the comments, although I am not totally convinced that we use libsingular everywhere. There could be remaining things still using the singular pexpect interface, maybe. |
comment:8
Replying to @fchapoton:
Me neither.
It seems code like |
Reviewer: Kwankyu Lee |
Branch pushed to git repo; I updated commit sha1. This was a forced push. New commits: |
comment:11
Here is a new branch with the comments restored |
comment:12
LGTM. Thanks. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Changed branch from u/chapoton/33949 to |
We get rid of
have_ring
option in singular interfaces, which is already out of use, as suggested in #2331.Component: commutative algebra
Author: Frédéric Chapoton
Branch/Commit:
8dc327a
Reviewer: Kwankyu Lee
Issue created by migration from https://trac.sagemath.org/ticket/33949
The text was updated successfully, but these errors were encountered: