-
Notifications
You must be signed in to change notification settings - Fork 17
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
Adding unicycle in the new frame #383
Conversation
src/MOI_wrapper.jl
Outdated
@@ -17,7 +17,7 @@ mutable struct Optimizer <: MOI.AbstractOptimizer | |||
variable_index::Vector{Int} # MOI.VariableIndex -> state/input/mode index | |||
lower::Vector{Float64} | |||
upper::Vector{Float64} | |||
start::Vector{Float64} | |||
start::Vector{Union{Float64, MOI.Interval{Float64}}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
start::Vector{Union{Float64, MOI.Interval{Float64}}} | |
start::Vector{MOI.Interval{Float64}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should modify set
for VariablePrimalStart
and create an interval with two equal bounds there
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for the case where start is only a value, right?
… variables using the start parameter
@blegat, do you have any idea why the documentation is failing? It's not clear to me. |
Oops, looks like a bug in JuMP, it should be fixed and released tomorrow or so, we can wait. |
@blegat I rerun but it's doesn't seem to change. Do I have to update the JuMP version in some ways? |
What do you think about #386 |
The PR should turn green with the new commits, I checked out JuMP in the Github action script |
No description provided.