1include"fzn_partition_set.mzn";2include"fzn_partition_set_reif.mzn";34/** @group globals
5 Constrains the sets in array \a S to partition the \a universe.
6*/7predicatepartition_set(array[int]ofvarsetofint:S,8setofint:universe)=9fzn_partition_set(S,universe);