this repo has no description
1include "exactly_int.mzn";
2include "exactly_set.mzn";
3
4/** @group globals.counting
5 Requires exactly \a n variables in \a x to take the value \a v.
6*/
7predicate exactly(int: n, array[int] of var int: x, int: v) =
8 exactly_int(n, x, v);
9
10/** @group globals.counting
11 Requires exactly \a n variables in \a x to take the value \a v.
12*/
13predicate exactly(int: n, array[int] of var set of int: x, set of int: v) =
14 exactly_set(n, x, v);
15