this repo has no description
1include "fzn_among.mzn";
2include "fzn_among_reif.mzn";
3
4/** @group globals.counting
5 Requires exactly \a n variables in \a x to take one of the values in \a v.
6*/
7predicate among(var int: n, array[int] of var int: x, set of int: v) =
8 fzn_among(n, x, v);
9
10predicate among_reif(var int: n, array[int] of var int: x, set of int: v, var bool: b) =
11 fzn_among_reif(n, x, v, b);