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