this repo has no description
at develop 231 B view raw
1% RUNS ON mzn20_fd 2% RUNS ON mzn-fzn_fd 3var 1..3: a; 4 5predicate test_pred(array[int] of 1.0..10.0: x, var int: y) = y = 3; 6 7constraint test_pred([1.0, 2.0, 4.0, 11.0], a) == false; 8 9solve satisfy; 10 11output ["a = ", show(a), ";\n"];