git-subtree-dir: software/minizinc git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
11 lines
224 B
MiniZinc
11 lines
224 B
MiniZinc
/***
|
|
!Test
|
|
expected: !Result
|
|
status: SATISFIED
|
|
***/
|
|
|
|
annotation simpleann;
|
|
annotation composeann(ann: s) = seq_search([s,s]);
|
|
function ann: annfunc(ann: s) = composeann(s);
|
|
solve :: annfunc(composeann(simpleann)) satisfy;
|