this repo has no description
at develop 223 B view raw
1include "fzn_disjoint.mzn"; 2include "fzn_disjoint_reif.mzn"; 3 4/** @group globals Requires that sets \a s1 and \a s2 do not intersect. */ 5predicate disjoint(var set of int: s1, var set of int: s2) = 6 fzn_disjoint(s1,s2);