-
Notifications
You must be signed in to change notification settings - Fork 9
Throw UnsupportedConstraint error in copy_to #80
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
Conversation
src/MOI_wrapper.jl
Outdated
) | ||
vis_src = MOI.get(src, MOI.ListOfVariableIndices()) | ||
if length(vis_src) < length(index_map.var_map) | ||
if length(vis_src) != length(index_map.var_map) |
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.
Ooops. I guess this should be a separate PR. Is the current <
correct? Shouldn't it be the other way around (or !=
)?
Codecov ReportBase: 55.00% // Head: 55.11% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #80 +/- ##
==========================================
+ Coverage 55.00% 55.11% +0.11%
==========================================
Files 9 9
Lines 809 840 +31
==========================================
+ Hits 445 463 +18
- Misses 364 377 +13
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
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.
This should be mirrored to SDPA. It would be good to have this tested with runtests
, I thought it was the case
I think it is. But CSDP skips a lot of the tests. |
Closes #79