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