CBLS.jl
CBLS.DiscreteSet — TypeDiscreteSet(values)CBLS.LessThanParam — TypeConstraint ensuring that the value of x is less than a given parameter param.
@constraint(model, x in LessThanParam(param))CBLS.MinusEqualParam — TypeConstraint ensuring that the value of x is less than a given parameter param.
@constraint(model, x in MinusEqualParam(param))CBLS.SequentialTasks — TypeLocal constraint ensuring that, given a vector X of size 4, |X[1] - X[2]| ≠ |X[3] - X[4]|).
@constraint(model, X in SequentialTasks())CBLS.SumEqualParam — TypeGlobal constraint ensuring that the sum of the values of X is equal to a given parameter param.
@constraint(model, X in SumEqualParam(param))