this repo has no description
1include "fzn_all_equal_set.mzn";
2include "fzn_all_equal_set_reif.mzn";
3
4%-----------------------------------------------------------------------------%
5% Constrains the array of objects 'x' to be all equal.
6%-----------------------------------------------------------------------------%
7
8predicate all_equal_set(array[int] of var set of int: x) =
9 fzn_all_equal_set(x);
10
11predicate all_equal_set_reif(array[int] of var set of int: x, var bool: b) =
12 fzn_all_equal_set_reif(x,b);