git-subtree-dir: software/mza git-subtree-split: f970a59b177c13ca3dd8aaef8cc6681d83b7e813
9 lines
232 B
MiniZinc
9 lines
232 B
MiniZinc
include "fzn_nvalue.mzn";
|
|
include "fzn_nvalue_reif.mzn";
|
|
|
|
/** @group globals.alldifferent
|
|
Requires that the number of distinct values in \a x is \a n.
|
|
*/
|
|
predicate nvalue(var int: n, array[int] of var int: x) =
|
|
fzn_nvalue(n, x);
|