this repo has no description
1include "tree.mzn";
2include "subgraph.mzn";
3
4predicate fzn_path_reif(int: N, int: E, array[int] of int: from, array[int] of int: to,
5 var int: s, var int: t, array[int] of var bool: ns, array[int] of var bool: es,
6 var bool: b) =
7 abort("Reified path constraint is not supported");
8
9%-----------------------------------------------------------------------------%