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