10 lines
145 B
MiniZinc
10 lines
145 B
MiniZinc
/***
|
|
!Test
|
|
expected: !Result
|
|
solution: !Solution
|
|
x: [1, 1, 1]
|
|
***/
|
|
|
|
array[int] of var 1..1: x :: add_to_output = [1, _, _];
|
|
solve satisfy;
|