-
Notifications
You must be signed in to change notification settings - Fork 128
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
Cartan eilenberg resolutions #4248
Cartan eilenberg resolutions #4248
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4248 +/- ##
==========================================
- Coverage 84.59% 84.59% -0.01%
==========================================
Files 631 632 +1
Lines 85064 85177 +113
==========================================
+ Hits 71960 72054 +94
- Misses 13104 13123 +19
|
@wdecker is dealing with it |
Looks good from my side. |
@@ -414,7 +414,7 @@ function set_grading!(M::FreeMod, W::Vector{<:IntegerUnion}) | |||
M.d = [W[i] * A[1] for i in 1:length(W)] | |||
end | |||
|
|||
function degrees(M::FreeMod) | |||
function degrees(M::FreeMod; check::Bool=true) |
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.
What is this check
argument for? I am asking because it is not used in the function body. Is it just for consistency with other module types?
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.
It's for compatibility with the other signatures, yes.
Can this be merged? I would like to rebase #4327 on this, once we're ready. |
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.
@jankoboehm said it looks good, so I merge.
This is a draft PR for adding Cartan-Eilenberg resolutions for complexes of modules.
I am working on this because I use it in a paper which I am going to present in this conference. This is still work in progress, but I want to keep it up to date with the current OSCAR and make sure that tests are running.