Skip to content
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

Variables with a mixed primal start values #215

Closed
rb004f opened this issue Jun 7, 2019 · 2 comments · Fixed by #216
Closed

Variables with a mixed primal start values #215

rb004f opened this issue Jun 7, 2019 · 2 comments · Fixed by #216
Labels
Wrapper: MathOptInterface Issue is specific to MOI wrapper

Comments

@rb004f
Copy link

rb004f commented Jun 7, 2019

Problems with variables that have a mix of initial starting points and no initial starting points results in an exception error. See

using JuMP
using Gurobi

m = Model()
@variable(m,x, lower_bound=0, upper_bound=2, start=0)
@variable(m,y, lower_bound=0, upper_bound=2)
JuMP.optimize!(m, with_optimizer(Gurobi.Optimizer))

This issue is likely related to this issue jump-dev/Ipopt.jl#155

@odow odow added the Wrapper: MathOptInterface Issue is specific to MOI wrapper label Jun 10, 2019
@jd-lara
Copy link

jd-lara commented Jun 17, 2019

Adding another test to the this thread

https://gist.github.com/jd-lara/23a6e08a41dc3ad6ee5d239b38c55307

@odow
Copy link
Member

odow commented Jun 17, 2019

Solved by the re-write of the MOI wrapper: #216

@odow odow closed this as completed in #216 Aug 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Wrapper: MathOptInterface Issue is specific to MOI wrapper
Development

Successfully merging a pull request may close this issue.

3 participants