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