git-subtree-dir: prototype git-subtree-split: 91f7db00d45e7f991b5587ee07f09977ae311ee7
12 lines
186 B
MiniZinc
12 lines
186 B
MiniZinc
% RUNS ON mzn20_fd
|
|
% RUNS ON mzn-fzn_fd
|
|
include "subcircuit.mzn";
|
|
|
|
array[1..4] of var int: x;
|
|
|
|
constraint subcircuit(x);
|
|
|
|
solve satisfy;
|
|
|
|
output ["x = array1d(1..4, ", show(x), ");\n"];
|