this repo has no description
1% RUNS ON mzn20_fd 2% RUNS ON mzn-fzn_fd 3 4set of int: X = -1..1; 5set of int: Y = 0..3; 6 7var Y: y; 8 9function var X: f( var Y: y ) = y+1; 10 11var int: x = f(y); 12 13solve satisfy; 14 15output [ show(x) ];