this repo has no description
at develop 518 B view raw
1include "fzn_at_least_int.mzn"; 2include "fzn_at_least_int_reif.mzn"; 3 4%-----------------------------------------------------------------------------% 5% Requires at least 'n' variables in 'x' to take the value 'v'. 6%-----------------------------------------------------------------------------% 7 8predicate at_least_int(int: n, array[int] of var int: x, int: v) = 9 fzn_at_least_int(n, x, v); 10 11predicate at_least_int_reif(int: n, array[int] of var int: x, int: v, var bool: b) = 12 fzn_at_least_int_reif(n, x, v, b);