this repo has no description
1% RUNS ON mzn20_fd
2% RUNS ON mzn-fzn_fd
3% Test xorall with multi-dimensional arrays.
4
5bool: b = xorall([|true, false | true \/ false, false|]);
6
7array[1..2,1..2,1..2] of var bool: bs;
8constraint xorall(bs);
9
10solve satisfy;
11
12output [
13 "% b = ", show(b), ";\n",
14 "bs = ", show(bs), ";\n"
15];