1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
277 B
MiniZinc

% RUNS ON mzn20_fd
% RUNS ON mzn-fzn_fd
% RUNS ON mzn20_mip
% Test for bug #337 but with mod rather than div.
array[1..2] of var bool: x;
var 0..0: y;
constraint not(x[1 mod y]);
solve satisfy;
output [
"x = array1d(1..2, ", show(x), ";\n",
"y = ", show(y), ";\n"
];