Closed
Description
These are perhaps not very high on anyone's priority list,
and models can avoid needing them, but they come up,
so i wonder if these would be welcomed? (if someone contributes them)?
- Vector Set "monotonic":
@constraint(model, [i=2:length(x)], x[i] <= x[x-i])
(configurable predicate) - Bridge (
Int
)x != 0
->c ? (x >= 1) : (x <= -1)
- Bridge (
Int
)x != y
->z = x - y; z != 0
- Bridge
x != y
->(x, y) in MOI.AllDifferent
- Bridge
x >= y
->x > y and x != y
(configurable predicate)