this repo has no description
at develop 444 B view raw
1include "tree.mzn"; 2include "subgraph.mzn"; 3 4predicate fzn_dpath_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 b <-> ( dtree(N,E,from,to,s,ns,es) /\ 8 dtree(N,E,to,from,t,ns,es) ); 9 10%-----------------------------------------------------------------------------%