this repo has no description
1% RUNS ON mzn20_fd
2% RUNS ON mzn-fzn_fd
3var 1..1: x; % Just so we have something to print out.
4
5include "roots.mzn";
6
7constraint roots([], {}, {});
8constraint roots([1, 2, 3], {}, {});
9constraint roots([1, 3, 1, 2, 3], {2, 4, 5}, {2, 3, 8});
10constraint roots([1, 1, 1], {1, 2, 3}, {1, 2});
11
12solve satisfy;
13
14output [
15 "x = ", show(x), ";\n"
16];