this repo has no description
1include "fzn_at_most_int.mzn";
2include "fzn_at_most_int_reif.mzn";
3
4%-----------------------------------------------------------------------------%
5% Requires at most 'n' variables in 'x' to take the value 'v'.
6%-----------------------------------------------------------------------------%
7
8predicate at_most_int(int: n, array[int] of var int: x, int: v) =
9 fzn_at_most_int(n, x, v);
10
11predicate at_most_int_reif(int: n, array[int] of var int: x, int: v, var bool: b) =
12 fzn_at_most_int_reif(n, x, v, b);