this repo has no description
at develop 483 B view raw
1include "fzn_int_set_channel.mzn"; 2include "fzn_int_set_channel_reif.mzn"; 3 4/** @group globals.channeling 5 Requires that array of int variables \a x and array of set variables \a y 6 are related such that (\a x[\p i] = \p j) ↔ (\p i in \a y[\p j]). 7*/ 8predicate int_set_channel(array[int] of var int: x, 9 array[int] of var set of int: y) = 10 fzn_int_set_channel(x,y); 11 12%-----------------------------------------------------------------------------%