In my program, I declare two variable R and G like that:
IntVar R = model.intVar("Red", 0,5);
IntVar G = model.intVar("Green", 0, 5);
When I print my model, I notice that :
domain(R) = [0,5] and domain(G)={0..5}. That is why I would like to know the difference between the two notation: [0,5] and {0..5}
Thank you
Austin