1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
191 B
MiniZinc

% RUNS ON mzn20_fd
% RUNS ON mzn-fzn_fd
set of int: X = -1..1;
set of int: Y = 0..3;
var Y: y;
function var X: f( var Y: y ) = y+1;
var int: x = f(y);
solve satisfy;
output [ show(x) ];