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