16 lines
393 B
MiniZinc
16 lines
393 B
MiniZinc
% RUNS ON mzn20_fd
|
|
% RUNS ON mzn-fzn_fd
|
|
|
|
% Regression test for bug #67. The version of mzn2fzn from 2009
|
|
% would abort because the wrong type-inst was inferred for the
|
|
% anonymous variable below. This was (eventually) fixed in r13873.
|
|
|
|
var int: x;
|
|
var int: y;
|
|
var int: z;
|
|
|
|
constraint
|
|
[x, y][_] = z;
|
|
|
|
solve :: int_search([x, y, z], input_order, indomain_min, complete) satisfy;
|
|
output []; |