-
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
Scalarize bridge error #2363
Comments
With jump-dev/DiffOpt.jl#253, this is becoming an MOI bug |
using JuMP, SCS
function fallback_error()
model = Model(SCS.Optimizer)
@variable(model, x, start = 1)
@objective(model, Min, x)
optimize!(model)
set_start_values(model)
optimize!(model)
return
end gives
What's a bit weird is that if I remove the first |
This was referenced Dec 19, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@blegat this is the scalarize error I mentioned in jump-dev/ParametricOptInterface.jl#143
The code:
the error:
The text was updated successfully, but these errors were encountered: