We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Printing model constraints with NLexpressions looks like,
subexpression[1] - 3.0 ≤ 0
In the case of printing the full model it would be convenient to see the NLexpressions as well.
MWE,
using JuMP m = Model() @variable(m, x) ex = @NLexpression(m, x^3) @NLconstraint(m, ex <= 3) println(m)
The output as of JuMP v0.21.3 looks like,
Feasibility Subject to subexpression[1] - 3.0 ≤ 0
The text was updated successfully, but these errors were encountered:
This is a duplicate of #1983.
Sorry, something went wrong.
No branches or pull requests
Printing model constraints with NLexpressions looks like,
In the case of printing the full model it would be convenient to see the NLexpressions as well.
MWE,
The output as of JuMP v0.21.3 looks like,
The text was updated successfully, but these errors were encountered: