this repo has no description
1include "fzn_table_int.mzn";
2include "fzn_table_int_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_int(array[int] of var int: x, array[int, int] of int: t) =
10 fzn_table_int(x, t);
11
12predicate table_int_reif(array[int] of var int: x, array[int, int] of int: t,
13 var bool: b) =
14 fzn_table_int_reif(x, t, b);
15
16%-----------------------------------------------------------------------------%