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