-
Notifications
You must be signed in to change notification settings - Fork 15
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
Is the redistribution available to solve a nonlinear (mixed) complementarity problem? #87
Comments
You can solve nonlinear MCP if you provide the function and Jacobian directly: Lines 604 to 752 in 87f8884
An upcoming version of JuMP will support nonlinear complementarity problems: #82 |
I appreciate your reply. I am a beginner of julia and JuMP, so I am confused some expressions in JuMP. I have one important question to use JuMP. In the example shown in README, you demonstrate solving the LCP Mx+q \perp x>= 0; however, the standard form of the LCP also has the nonnegative constraint of Mx+q, i.e., Mx+q>=0. Is this automatically added in the model? |
A complementarity problem in JuMP depends only on the bounds of the https://jump.dev/JuMP.jl/stable/moi/reference/standard_form/#MathOptInterface.Complements For JuMP is not like Pyomo or AMPL, where you can put inequalities on the function as well as the variable. |
My guess is that @a24hori is just confused by reading the complementarity constraint in the form |
The original PATH solver enables to solve a nonlinear CP by running pathmcp(...).
The text was updated successfully, but these errors were encountered: