this repo has no description
at develop 310 B view raw
1include "path.mzn"; 2 3predicate fzn_bounded_path(array[int] of $$N: from, array[int] of $$N: to, array[int] of int: w, 4 var $$N: s, var $$N: t, array[$$N] of var bool: ns, array[int] of var bool: es, var int: K) = 5 path(from,to,s,t,ns,es) /\ 6 K = sum(e in index_set(es))(es[e]*w[e]);