this repo has no description
1include "fzn_increasing_set.mzn";
2include "fzn_increasing_set_reif.mzn";
3
4%-----------------------------------------------------------------------------%
5% Requires that the array 'x' is in increasing order (duplicates are allowed).
6%-----------------------------------------------------------------------------%
7
8predicate increasing_set(array[int] of var set of int: x) =
9 fzn_increasing_set(x);