-
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
Unsupported features should error, not warn #150
Comments
I'll add to this a request for support of |
A model = Model()
@variable(model, x[1:2])
@constraint(model, [x[1], x[1]^2 + x[1] * x[2] + 3.0] >= 0) |
Thanks Oscar, it will help to verify that my parser of |
I didn't look at the details, but my only comment is that you might need a |
We assume symmetry in this case, and add the |
Cool cool. I think the definition of |
When we define a constraint with |
Any subtype of |
@ccoffrin was running a few examples and getting incorrect results because quadratic constraints are not supported (#50).
Shouldn't this be an error instead of a warning?
NLPModelsJuMP.jl/src/utils.jl
Lines 216 to 219 in 12d8f23
The text was updated successfully, but these errors were encountered: