14 lines
154 B
MiniZinc
14 lines
154 B
MiniZinc
/***
|
|
!Test
|
|
expected: !Result
|
|
status: SATISFIED
|
|
solution: !Solution
|
|
x: 1
|
|
***/
|
|
|
|
var 0..1: x;
|
|
|
|
constraint not (not (1 div x = 1));
|
|
|
|
solve satisfy;
|