-
Notifications
You must be signed in to change notification settings - Fork 148
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
Check for Feasibility of a Model #82
Comments
How about: |
Given the current state of JuMP this might be the best solution. In an ideal world, checking feasibility should not require sending the problem to a solver. If you know the constraints and have a value for every variable, then you should be able to easily evaluate the constraints in Julia to test for feasibility up to some numerical tolerance. @mlubin, @chriscoey suggestions on this? It seems like you do similar checks in Pajarito. |
Well, you can extract the constraint data and check feasibility. The easiest way is likely to make a dummy solver that does this through MathProgBase. |
Sounds like a good solution to me. |
@mlubin is this an expected feature in the next version of JuMP/MOI? |
We will have the infrastructure to implement this much more easily in JuMP/MOI, but this isn't a blocker or high priority for the JuMP 0.19 release. |
Make an easy way to test if a solution is feasible for a given model.
The text was updated successfully, but these errors were encountered: