1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
Jip J. Dekker fad1b07018 Squashed 'software/minizinc/' content from commit 4f10c8205
git-subtree-dir: software/minizinc
git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
2021-06-16 14:06:46 +10:00

15 lines
452 B
MiniZinc

include "fzn_at_most1.mzn";
include "fzn_at_most1_reif.mzn";
/** @group globals.counting
Requires that each pair of sets in \a s overlap in at most one element.
*/
predicate at_most1(array[$X] of var set of int: s) =
fzn_at_most1(array1d(s));
predicate at_most1_reif(array[$X] of var set of int: s, var bool: b) =
fzn_at_most1_reif(array1d(s), b);
% Synonym for the above.
predicate atmost1(array[$X] of var set of int: s) = at_most1(s);