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