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
483 B
MiniZinc

include "fzn_int_set_channel.mzn";
include "fzn_int_set_channel_reif.mzn";
/** @group globals.channeling
Requires that array of int variables \a x and array of set variables \a y
are related such that (\a x[\p i] = \p j) ↔ (\p i in \a y[\p j]).
*/
predicate int_set_channel(array[int] of var int: x,
array[int] of var set of int: y) =
fzn_int_set_channel(x,y);
%-----------------------------------------------------------------------------%