this repo has no description
at develop 394 B view raw
1include "fzn_increasing_int.mzn"; 2include "fzn_increasing_int_reif.mzn"; 3 4%-----------------------------------------------------------------------------% 5% Requires that the array 'x' is in increasing order (duplicates are allowed). 6%-----------------------------------------------------------------------------% 7 8predicate increasing_int(array[int] of var int: x) = 9 fzn_increasing_int(x);