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