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