I see that ORTools and CpOptimizer both use global constraints. I know it speeds up the search a lot, but what does it actually do? Like what is the difference between me using (1) or (2) below;
Example for the AllDifferent constraint:
1) x1 != x2, x2 != x3, x1 != x3
and
2) AllDifferent(x1, x2, x3)
???