-
Notifications
You must be signed in to change notification settings - Fork 3
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
Fix sparse array construction #142
Conversation
This also fixes another bug where construction of a sparse array on |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #142 +/- ##
==========================================
+ Coverage 91.20% 91.42% +0.21%
==========================================
Files 37 37
Lines 1456 1434 -22
==========================================
- Hits 1328 1311 -17
+ Misses 128 123 -5 ☔ View full report in Codecov by Sentry. |
Looks like |
The first Julia version that passes is 1.9. |
Then let's add the fix and appropriate tests for version 1.9, and the sparse constructors will be buggy below that. Do they error or silently return something? |
JuliaSmoothOptimizers/ADNLPModels.jl#247 has me thinking: should we overload |
Not really related to this PR, but there is no sane thing to return for |
Closes #141.
Still requires tests.