this repo has no description
1% RUNS ON mzn20_fd 2% RUNS ON mzn-fzn_fd 3% RUNS ON mzn20_mip 4 5% Test for bug #337 but with mod rather than div. 6 7array[1..2] of var bool: x; 8var 0..0: y; 9constraint not(x[1 mod y]); 10solve satisfy; 11output [ 12 "x = array1d(1..2, ", show(x), ";\n", 13 "y = ", show(y), ";\n" 14];