this repo has no description
at develop 691 B view raw
1include "fzn_table_bool.mzn"; 2include "fzn_table_bool_reif.mzn"; 3 4%-----------------------------------------------------------------------------% 5% A table constraint: table(x, t) represents the constraint x in t where we 6% consider each row in t to be a tuple and t as a set of tuples. 7%-----------------------------------------------------------------------------% 8 9predicate table_bool(array[int] of var bool: x, array[int, int] of bool: t) = 10 fzn_table_bool(x, t); 11 12predicate table_bool_reif(array[int] of var bool: x, array[int, int] of bool: t, 13 var bool: b) = 14 fzn_table_bool_reif(x, t, b); 15 16%-----------------------------------------------------------------------------%