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