this repo has no description
at develop 173 B view raw
1predicate fzn_alldifferent_except_0(array[int] of var int: vs) = 2 forall(i, j in index_set(vs) where i < j) ( 3 (vs[i] != 0 /\ vs[j] != 0) -> vs[i] != vs[j] 4 );