-
Notifications
You must be signed in to change notification settings - Fork 94
Document status enums. #575
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/attributes.jl
Outdated
implies that the dual is unbounded, given a primal feasible solution, an | ||
infeasibility certificate in the dual implies that the primal is unbounded. | ||
* `NearlyInfeasibilityCertificate` | ||
* `ReductionCertificate` |
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.
Ditto
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.
Maybe we should remove the reduction certificates. This was based on a planned feature of Mosek, but last I heard it was dropped. There are no solvers that return reduction certificates. @chriscoey
Codecov Report
@@ Coverage Diff @@
## master #575 +/- ##
==========================================
+ Coverage 95.68% 95.69% +0.01%
==========================================
Files 47 47
Lines 4843 4903 +60
==========================================
+ Hits 4634 4692 +58
- Misses 209 211 +2
Continue to review full report at Codecov.
|
src/attributes.jl
Outdated
implies that the dual is unbounded, given a primal feasible solution, an | ||
infeasibility certificate in the dual implies that the primal is unbounded. | ||
* `NearlyInfeasibilityCertificate` | ||
* `ReductionCertificate` |
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.
Maybe we should remove the reduction certificates. This was based on a planned feature of Mosek, but last I heard it was dropped. There are no solvers that return reduction certificates. @chriscoey
src/attributes.jl
Outdated
tolerances are relaxed. | ||
* `InfeasiblePoint`: the result vector is an infeasible point. | ||
* `InfeasibilityCertificate`: the result vector is an infeasibility certificate. | ||
Given a dual feasible solution, an infeasibility certificate in the primal |
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 "infeasibility Ray in the primal" ? I would expect "infeasibility ray for the dual" here
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.
Yeah this wording is a bit confusing.
Is this better? |
LGTM |
Closes #573