git-subtree-dir: software/mza git-subtree-split: f970a59b177c13ca3dd8aaef8cc6681d83b7e813
21 lines
380 B
MiniZinc
21 lines
380 B
MiniZinc
%
|
|
% This test case checks that the cpviz annotations are recongised
|
|
% and flattened.
|
|
|
|
array[1..5] of var 0..10: x
|
|
:: viz([
|
|
viztype("vector"),
|
|
vizpos(0, 2),
|
|
vizwidth(5),
|
|
vizheight(11),
|
|
vizrange(0, 10)
|
|
])
|
|
:: viz([
|
|
viztype("vector_waterfall"),
|
|
vizpos(8, 0),
|
|
vizwidth(5),
|
|
vizheight(15)
|
|
]);
|
|
|
|
solve satisfy;
|