git-subtree-dir: software/minizinc git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
15 lines
242 B
MiniZinc
15 lines
242 B
MiniZinc
/***
|
|
!Test
|
|
expected: !Result
|
|
solution: !Solution
|
|
a: true
|
|
b: false
|
|
c: true
|
|
***/
|
|
|
|
opt bool: x = <>;
|
|
opt bool: y = <>;
|
|
|
|
bool: a :: add_to_output = (x == y);
|
|
bool: b :: add_to_output = (x != y);
|
|
bool: c :: add_to_output = (x == <>); |