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