-
Notifications
You must be signed in to change notification settings - Fork 94
Fix SOC3 #839
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 SOC3 #839
Conversation
Julia opt master
Codecov Report
@@ Coverage Diff @@
## master #839 +/- ##
==========================================
+ Coverage 94.83% 94.95% +0.11%
==========================================
Files 71 72 +1
Lines 7649 7910 +261
==========================================
+ Hits 7254 7511 +257
- Misses 395 399 +4
Continue to review full report at Codecov.
|
src/Test/contconic.jl
Outdated
|
||
@test MOI.get(model, MOI.TerminationStatus()) == MOI.INFEASIBLE | ||
@test MOI.get(model, MOI.TerminationStatus()) in (MOI.INFEASIBLE, | ||
MOI.INFEASIBLE_OR_UNBOUNDED) |
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.
@odow Why do we need to support INFEASIBLE_OR_UNBOUNDED
? We can set the following parameters so that Gurobi doesn't return this status:
https://www.gurobi.com/documentation/8.0/refman/infunbdinfo.html
https://www.gurobi.com/documentation/8.0/refman/dualreductions.html#parameter:DualReductions
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.
Oooo. I didn't realize there was this parameter.
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.
I've updated Gurobi to use the parameter, and reverted the change here.
#836