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