You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to be able to write more complex expressions, such as indicators and reifications in the RHS of an indicator / reification. For example (from http://hakank.org/julia/constraints/monks_and_doors.jl )
which isn't implemented yet but would be easy. It's probably hard to have
@constraint(model, m7 := { m3 => {m6 > 1}})
that working at the moment as > is not implemented directly and I'm not sure yet how to best allow this inside an indicator constraint which is also inside of a reified constraint. I might go for implementing it though such that m6 > 1 fails and m6 == 1 works first.
The first is now implemented. Will check what I can do to support a different lhs of a reified or indicator constraint.
Also support for > or >= is still not implemented.
It would be great to be able to write more complex expressions, such as indicators and reifications in the RHS of an indicator / reification. For example (from http://hakank.org/julia/constraints/monks_and_doors.jl )
The text was updated successfully, but these errors were encountered: