10 lines
399 B
MiniZinc
10 lines
399 B
MiniZinc
include "fzn_increasing_bool.mzn";
|
|
include "fzn_increasing_bool_reif.mzn";
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
% Requires that the array 'x' is in increasing order (duplicates are allowed).
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
predicate increasing_bool(array[int] of var bool: x) =
|
|
fzn_increasing_bool(x);
|