this repo has no description
1% RUNS ON mzn20_fd 2% RUNS ON mzn-fzn_fd 3% RUNS ON mzn20_fd_linear 4% RUNS ON mzn20_mip 5% DISABLED ON mzn_cd_fd 6% A regression test for G12 bug #69. 7% 8array [1..3] of var int: y; 9predicate p(array [int] of var 1..10: x) = (x[1] mod 2 = 0); 10constraint p(y); 11solve satisfy; 12output ["y = ", show(y), ";\n"];