1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
513 B
MiniZinc

include "fzn_lex_chain_less_int.mzn";
include "fzn_lex_chain_less_int_reif.mzn";
%-----------------------------------------------------------------------------%
% Requires that the columns of matrix \a a are lexicographically sorted,
% strictly increasing.
%-----------------------------------------------------------------------------%
predicate lex_chain_less_int(array[int, int] of var int: a) =
fzn_lex_chain_less_int(a);
%-----------------------------------------------------------------------------%