this repo has no description
1%-----------------------------------------------------------------------------%
2% Constrains the array of objects 'x' to be all equal.
3%-----------------------------------------------------------------------------%
4
5predicate fzn_all_equal_int_reif(array[int] of var int: x, var bool: b) =
6 b <-> forall(i, j in index_set(x) where i < j) ( x[i] = x[j] );