this repo has no description
1% RUNS ON mzn20_fd 2% RUNS ON mzn-fzn_fd 3include "circuit.mzn"; 4 5array[1..4] of var 1..4: c1; 6array[2..5] of var -100..100: c2; 7 8constraint circuit(c1); 9constraint circuit(c2); 10 11solve satisfy; 12 13output [ 14 "c1 = array1d(1..4, ", show(c1), ");\n", 15 "c2 = array1d(2..5, ", show(c2), ");\n" 16];