this repo has no description
at develop 185 B view raw
1% RUNS OM minizinc_fd 2 3var 1..3: a; 4 5predicate test_pred(set of 2..4: x, var int: y) = y = 3; 6 7constraint test_pred({11}, a) == false; 8 9solve satisfy; 10 11output ["a = ", show(a), ";\n"];