Skip to content
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

Add REDUCTION_CERTIFICATE #734

Merged
merged 3 commits into from
May 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions src/attributes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -855,15 +855,24 @@ The values indicate how to interpret the result vector.
infeasibility.
* `NEARLY_INFEASIBILITY_CERTIFICATE`: the result satisfies a relaxed criterion for
a certificate of infeasibility.
* `REDUCTION_CERTIFICATE`: the result vector is an ill-posed certificate; see
[this article](https://arxiv.org/abs/1408.4685) for details. If the
`PrimalStatus` is `REDUCTION_CERTIFICATE`, then the primal result vector is a
proof that the dual problem is ill-posed. If the `DualStatus` is
`REDUCTION_CERTIFICATE`, then the dual result vector is a proof that the primal
is ill-posed.
* `NEARLY_REDUCTION_CERTIFICATE`: the result satisfies a relaxed criterion for
an ill-posed certificate.
* `UNKNOWN_RESULT_STATUS`: the result vector contains a solution with an unknown
interpretation.
* `OTHER_RESULT_STATUS`: the result vector contains a solution with an
interpretation not covered by one of the statuses defined above.
"""
@enum(ResultStatusCode, NO_SOLUTION, FEASIBLE_POINT, NEARLY_FEASIBLE_POINT,
INFEASIBLE_POINT, INFEASIBILITY_CERTIFICATE,
NEARLY_INFEASIBILITY_CERTIFICATE, UNKNOWN_RESULT_STATUS,
OTHER_RESULT_STATUS)
@enum(ResultStatusCode, NO_SOLUTION,
FEASIBLE_POINT, NEARLY_FEASIBLE_POINT, INFEASIBLE_POINT,
INFEASIBILITY_CERTIFICATE, NEARLY_INFEASIBILITY_CERTIFICATE,
REDUCTION_CERTIFICATE, NEARLY_REDUCTION_CERTIFICATE,
UNKNOWN_RESULT_STATUS, OTHER_RESULT_STATUS)

"""
PrimalStatus(N)
Expand Down