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.

22 lines
291 B
MiniZinc

/***
!Test
expected:
- !Result
solution: !Solution
x: [1, 1, 1]
a: 1
y: [1, 1, 1]
b: 1
- !Result
solution: !Solution
x: [3, 3, 3]
a: 9
y: [3, 3, 3]
b: 9
***/
include "test_bug218_inc.mzn";
var 1..ub(sum(x)): a;
array[1..3] of var 1..3: y;
solve satisfy;