this repo has no description
1predicate geas_table_int(array [int] of var int: x, array [int] of int: t);
2
3predicate fzn_table_int(array [int] of var int: x, array [int, int] of int: t) =
4 assert (index_set_2of2(t) == index_set(x),
5 "The second dimension of the table must equal the number of variables "
6 ++ "in the first argument",
7 geas_table_int(x, [ t[i,j] | i in index_set_1of2(t), j in index_set_2of2(t) ])
8 );