this repo has no description
1include "fzn_exactly_set.mzn";
2include "fzn_exactly_set_reif.mzn";
3
4%-----------------------------------------------------------------------------%
5% Requires exactly 'n' variables in 'x' to take the value 'v'.
6%-----------------------------------------------------------------------------%
7
8predicate exactly_set(int: n, array[int] of var set of int: x, set of int: v) =
9 fzn_exactly_set(n, x, v);