6 lines
332 B
MiniZinc
6 lines
332 B
MiniZinc
predicate fzn_dtree_reif(int: N, int: E, array[int] of int: from, array[int] of int: to,
|
|
var int: r, array[int] of var bool: ns, array[int] of var bool: es, var bool: b) =
|
|
abort("Reified dtree constraint is not supported");
|
|
|
|
%-----------------------------------------------------------------------------%
|