ConditionalJuMP.jl
ConditionalJuMP.jl copied to clipboard
Automatic transformation of implications and complementarity into mixed-integer models in Julia
Is there a release planned to support the new JuMP v0.19.0?
I'm trying to use the conditional @implies and it seems that it's not working quite right. I have two variables declared (with lower and upper bounds) as follows: Assets =...
instead of turning `x + y` into `_conditional(+, x, y)`, we could transform it into `Var(x) + Var(y)` and add appropriate overloads to the `Var` wrapper type. That would avoid...
As pointed out by @vtjeng, doing ``` y = @switch((x 0, (x >= 0) => x) ``` results in a model whose convex relaxation isn't as tight as it should...
This results in an error message, even though we could reason that `-2
This should probably work: ```julia @variable(m, x) @constraint(m -1 1) ``` but currently fails because `x` has a constraint but no actual bounds.