/usr/share/minizinc/std/table.mzn is in minizinc 2.0.11+dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | include "table_bool.mzn";
include "table_int.mzn";
/** @group globals.extensional
Represents the constraint \a x in \a t where we
consider each row in \a t to be a tuple and \a t as a set of tuples.
*/
predicate table(array[int] of var bool: x, array[int, int] of bool: t) =
table_bool(x, t);
/** @group globals.extensional
Represents the constraint \a x in \a t where we
consider each row in \a t to be a tuple and \a t as a set of tuples.
*/
predicate table(array[int] of var int: x, array[int, int] of int: t) =
table_int(x, t);
|