git-subtree-dir: software/minizinc git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
9 lines
390 B
MiniZinc
9 lines
390 B
MiniZinc
include "fzn_strictly_increasing_int_opt.mzn";
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
% Requires that the array 'x' is in strict decreasing order
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
predicate fzn_strictly_decreasing_int_opt(array[int] of var opt int: x) =
|
|
fzn_strictly_increasing_int_opt(reverse(x));
|