IntVar v = model.intVar("v", 1, 12, true);
// or
v= model.intVar("v", 20, 30, true);
I want the value of IntVar v not only in [1,12] but also in [20,30] and in other segment of values [...,....] I don't understand how to do this with the specific declaration of an IntVar
In choco-solver, you can either define bounded domain variables (with
model.intVar(name, lowerBound, upperBound)
)or enumerated domain variables (with
model.intVar(name, values...)
:So, if the domain you want to declare is made of ranges, there is no other option than to list all possible values.