git-subtree-dir: prototype git-subtree-split: 91f7db00d45e7f991b5587ee07f09977ae311ee7
15 lines
297 B
MiniZinc
15 lines
297 B
MiniZinc
% RUNS ON mzn20_fd
|
|
% RUNS ON mzn-fzn_fd
|
|
% Test forall/1 with multi-dimensional arrays.
|
|
|
|
bool: b = forall([|true, true | true \/ false, not false|]);
|
|
array[1..2,1..2,1..2] of var bool: bs;
|
|
constraint forall(bs);
|
|
|
|
solve satisfy;
|
|
|
|
output [
|
|
"% b = ", show(b), ";\n",
|
|
"bs = ", show(bs), ";\n"
|
|
];
|