We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the case of dual infeasibility, the primal is the infeasibility certificate. The dual is reported as a certificate, but it cannot be: https://github.com/oxfordcontrol/OSQP.jl/blob/8dd46b5a7c8955ae41cf8464295825801946e939/src/MOI_wrapper.jl#L555-L561
Same thing applies in the case of primal infeasibility: https://github.com/oxfordcontrol/OSQP.jl/blob/8dd46b5a7c8955ae41cf8464295825801946e939/src/MOI_wrapper.jl#L537-L543
We could return either NO_SOLUTION or INFEASIBLE_POINT in this case, depending on what OSQP says about these solutions.
NO_SOLUTION
INFEASIBLE_POINT
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the case of dual infeasibility, the primal is the infeasibility certificate. The dual is reported as a certificate, but it cannot be:
https://github.com/oxfordcontrol/OSQP.jl/blob/8dd46b5a7c8955ae41cf8464295825801946e939/src/MOI_wrapper.jl#L555-L561
Same thing applies in the case of primal infeasibility:
https://github.com/oxfordcontrol/OSQP.jl/blob/8dd46b5a7c8955ae41cf8464295825801946e939/src/MOI_wrapper.jl#L537-L543
We could return either
NO_SOLUTION
orINFEASIBLE_POINT
in this case, depending on what OSQP says about these solutions.The text was updated successfully, but these errors were encountered: