-
Notifications
You must be signed in to change notification settings - Fork 133
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
Module quotients I #4217
Module quotients I #4217
Conversation
# Examples | ||
|
||
```jldoctest | ||
julia> R, (x, y, z) = polynomial_ring(QQ, [:x, :y, :z]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just FYI these days you could also write
julia> R, (x, y, z) = polynomial_ring(QQ, [:x, :y, :z]); | |
julia> R = @polynomial_ring(QQ, [:x, :y, :z]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thx, the next time ...
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4217 +/- ##
=======================================
Coverage 84.60% 84.60%
=======================================
Files 631 631
Lines 84915 84954 +39
=======================================
+ Hits 71842 71878 +36
- Misses 13073 13076 +3
|
@thofma The failing test here signals a problem in number theory. Any idea? |
Yes, this is #4170 can be ignored. |
@HechtiDerLachs Can you please check whether you agree and if so, merge this PR. In the next PR I wish to do quotients of type M:J, M module, J ideal. Do you have already a generic method for this? Can we reasonably reduce this to |
No, I don't think I or anyone else has implemented a generic method for this, yet.
I don't see this straight away. There are certainly generic implementations of this. But already my implementation for As you said the other day, we should wrap the established Singular routine for the polynomial case. |
Implement quotients `I:J` for subquotients `I` and `J` and bind in the annihilator methods from Singular.
No description provided.