git-subtree-dir: software/minizinc git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
16 lines
158 B
MiniZinc
16 lines
158 B
MiniZinc
/***
|
|
!Test
|
|
expected:
|
|
- !Result
|
|
solution: !Solution
|
|
x: 1
|
|
***/
|
|
|
|
% Used to give UNSATISFIABLE
|
|
|
|
var {1}: x;
|
|
|
|
constraint int_times(1, 1, x);
|
|
|
|
solve satisfy;
|