this repo has no description
1% RUNS ON mzn20_fd 2% RUNS ON mzn-fzn_fd 3 4% Regression test for bug #67. The version of mzn2fzn from 2009 5% would abort because the wrong type-inst was inferred for the 6% anonymous variable below. This was (eventually) fixed in r13873. 7 8var int: x; 9var int: y; 10var int: z; 11 12constraint 13 [x, y][_] = z; 14 15solve :: int_search([x, y, z], input_order, indomain_min, complete) satisfy; 16output [];