-
Notifications
You must be signed in to change notification settings - Fork 8
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
Support Gurobi's computeIIS()
and convertToFixed()
#32
Comments
computeIIS()
computeIIS()
and convertToFixed()
Alternatively, it might be possible to create a generic
But they could also execute other functions like |
|
Great! If we can't access the iis status on the variables that's ok since we'd still be able to write out a .ilp file (containing those variables) |
I use an underscored name to indicate it is an internal function, and there is no similar function in other solvers. You can call it in Pyoframe. A more general way would be recording the indices and bounds of integer variables and convert them to continuous one, then provide API to convert it back if needed, like what JuMP.jl does. |
For IIS, I propose to add a @staadecker Is it OK for you? |
Yes! |
@staadecker IIS support is implemented in 68b5a04 Documentation will be added later. |
Let me know when you release the changes in a new version! (Right now I have to compile your library myself and I rather not set up that process in my CI pipeline) |
I just shared my progress with the rest of my team and they mentioned that it would be very important to be able to call Gurobi's
.computeIIS()
method and.convertToFixed()
. The former has proven incredibly helpful in many cases and the later is an active part of our current processes. I'm guessing this should be pretty easy to expose in the PyOptInterface API?The text was updated successfully, but these errors were encountered: