this repo has no description
at develop 388 B view raw
1include "fzn_exactly_int.mzn"; 2include "fzn_exactly_int_reif.mzn"; 3 4%-----------------------------------------------------------------------------% 5% Requires exactly 'n' variables in 'x' to take the value 'v'. 6%-----------------------------------------------------------------------------% 7 8predicate exactly_int(int: n, array[int] of var int: x, int: v) = 9 fzn_exactly_int(n, x, v);