this repo has no description
1include "decreasing_bool.mzn";
2include "decreasing_float.mzn";
3include "decreasing_int.mzn";
4include "decreasing_set.mzn";
5
6/** @group globals.sort Requires that the array \a x is in decreasing order (duplicates are allowed). */
7predicate decreasing(array[int] of var bool: x) =
8 decreasing_bool(x);
9
10/** @group globals.sort Requires that the array \a x is in decreasing order (duplicates are allowed). */
11predicate decreasing(array[int] of var float: x) =
12 decreasing_float(x);
13
14/** @group globals.sort Requires that the array \a x is in decreasing order (duplicates are allowed). */
15predicate decreasing(array[int] of var int: x) =
16 decreasing_int(x);
17
18/** @group globals.sort Requires that the array \a x is in decreasing order (duplicates are allowed). */
19predicate decreasing(array[int] of var set of int: x) =
20 decreasing_set(x);