this repo has no description
at develop 361 B view raw
1%-----------------------------------------------------------------------------% 2% Requires that the array 'x' is in strict increasing order 3%-----------------------------------------------------------------------------% 4 5predicate fzn_strictly_increasing_int(array[int] of var int: x) = 6 forall(i in index_set(x) diff { min(index_set(x)) }) (x[i-1] < x[i]);