-
Notifications
You must be signed in to change notification settings - Fork 87
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
supports AbstractConstraintAttribute broken for bridges #1572
Labels
Comments
Here is the fix for a similar problem with the slack bridge #1383 |
Yeah is it sufficient to just look at the inner optimizer? If so, why is #1383 still a draft? |
Because it needs tests ^^ |
Closing because this is now fixed. The IndicatorSOS1Bridge PR is different. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HiGHS doesn't support
ConstraintDualStart
, so any bridged constraint shouldn't either. But yet:Here's the offending code:
MathOptInterface.jl/src/Bridges/bridge_optimizer.jl
Lines 1218 to 1234 in 9a54ba7
It ends up calling
MathOptInterface.jl/src/Bridges/Constraint/scalarize.jl
Lines 121 to 127 in 9a54ba7
which is only true if the inner optimizer also supports it.
The text was updated successfully, but these errors were encountered: