git-subtree-dir: software/minizinc git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
22 lines
326 B
MiniZinc
22 lines
326 B
MiniZinc
/***
|
|
!Test
|
|
expected: !Error
|
|
type: MiniZincAssertionError
|
|
***/
|
|
|
|
array [1..10] of int: a =
|
|
[i | i in 1..10];
|
|
|
|
% Function style assertion.
|
|
%
|
|
test odd(int: x) = (x mod 2 = 1);
|
|
|
|
array [1..10] of int: b =
|
|
[assert(odd(2 * a[i]), "that's odd...", 2 * a[i]) | i in 1..10];
|
|
|
|
var 1..10: x;
|
|
|
|
constraint b[x] = max(b);
|
|
|
|
solve satisfy;
|