-
Notifications
You must be signed in to change notification settings - Fork 66
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
Blockwise setindex
in vcat
etc.
#1662
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1662 +/- ##
==========================================
+ Coverage 86.88% 86.93% +0.04%
==========================================
Files 116 116
Lines 29652 29624 -28
==========================================
- Hits 25764 25753 -11
+ Misses 3888 3871 -17 ☔ View full report in Codecov by Sentry. |
So probably I can't remove the |
I would consider the current behavior here a bug (coercing the second matrix into the ring of the first), so this bug can and should be fixed. The fix in Oscar (oscar-system/Oscar.jl#3580) should get backported to 1.0. And there seems to be some issue with Hecke here. |
Do we need a new label? "fake breaking"? |
I removed the commit that made this pull request breaking (and will open another pull request soon). This pull request should now be neither breaking nor fake breaking. |
This way we don't have to access single matrix entries for the flint types in Nemo.
Also removes
vcat(::MatElem, ::MatElem)
andhcat(::MatElem, ::MatElem)
in favour ofvcat(::MatrixElem...)
etc. (assuming CI agrees).