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.

12 lines
202 B
MiniZinc

/***
!Test
expected: !Result
status: SATISFIED
***/
array[int] of int: x = [3,4];
array[int] of int : y = [x | x in 1..2 where z[x]];
array[int] of bool : z = [x[i] == 1| i in 1..2];
solve satisfy;