7 lines
377 B
MiniZinc
7 lines
377 B
MiniZinc
predicate fzn_dreachable_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 dreachable constraint is not supported");
|
|
|
|
%-----------------------------------------------------------------------------%
|