this repo has no description
at develop 407 B view raw
1include "all_equal_int.mzn"; 2include "all_equal_set.mzn"; 3 4/** @group globals.alldifferent 5 Constrain the array of integers \a x to be all equal 6*/ 7predicate all_equal(array[$X] of var int: x) = 8 all_equal_int(array1d(x)); 9 10/** @group globals.alldifferent 11 Constrain the array of sets of integers \a x to be all equal 12*/ 13predicate all_equal(array[$X] of var set of int: x) = 14 all_equal_set(array1d(x));