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.

16 lines
266 B
MiniZinc

/***
!Test
solvers: [gecode]
expected: !Result
solution: !Solution
x: [true]
***/
% Previously we would only eval_array_lit on the in part
array[int] of var bool: x :: add_to_output = [y | y in let {
array [1..1] of var bool: z;
} in z];
constraint x[1];