git-subtree-dir: software/minizinc git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
10 lines
378 B
MiniZinc
10 lines
378 B
MiniZinc
include "fzn_member_float.mzn";
|
|
include "fzn_member_float_reif.mzn";
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
% Requires that 'y' occurs in the array or set 'x'.
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
predicate member_float(array[int] of var float: x, var float: y) =
|
|
fzn_member_float(x, y);
|